Skip to content

Commit

Permalink
Fix wheel packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Sep 21, 2021
1 parent efa71e3 commit e09a833
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin-tools/make-dist-3.3-3.5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ for pyversion in $PYVERSIONS; do
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
rm -fr build
python setup.py bdist_egg bdist_wheel
mv -v dist/${PACKAGE}-$VERSION-{py2.py3,py$first_two}-none-any.whl
mv -v dist/${PACKAGE}-$VERSION-{py3,py$first_two}-none-any.whl
echo === $pyversion ===
done

Expand Down
4 changes: 2 additions & 2 deletions admin-tools/make-dist-newer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fi

cd ..
source $PACKAGE/version.py
echo $VERSION
echo $__version__

for pyversion in $PYVERSIONS; do
echo --- $pyversion ---
Expand All @@ -33,7 +33,7 @@ for pyversion in $PYVERSIONS; do
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
rm -fr build
python setup.py bdist_egg bdist_wheel
mv -v dist/${PACKAGE}-$VERSION-{py2.py3,py$first_two}-none-any.whl
mv -v dist/${PACKAGE}-$__version__-{py3,py$first_two}-none-any.whl
echo === $pyversion ===
done

Expand Down

0 comments on commit e09a833

Please sign in to comment.