Skip to content

Commit

Permalink
release.org fix incorrect use of REST, should have been @ all along
Browse files Browse the repository at this point in the history
building the wheel with --release is wrong, --release is only used
for the sdist release to control exactly what is packaged
  • Loading branch information
tgbugs committed Aug 28, 2020
1 parent a892025 commit 2eb8541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/release.org
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ build-release () {
pushd dist/
tar xvzf ${packagename}-${version}.tar.gz
pushd ./${packagename}-${version}/
python setup.py bdist_wheel $REST
python setup.py bdist_wheel $@ # this should NOT be $REST, because we don't call it with --release (among other things)
mv dist/*.whl ../
popd # from ./${packagename}-${version}/
rm -r ./${packagename}-${version}/
Expand Down

0 comments on commit 2eb8541

Please sign in to comment.