release (cheetah3-3.2.4) | : | release (cheetah3-3.2.5) | ||
---|---|---|---|---|
skipping to change at line 13 | skipping to change at line 13 | |||
cd "`dirname \"$0\"`"/.. && | cd "`dirname \"$0\"`"/.. && | |||
umask 022 && | umask 022 && | |||
chmod -R a+rX . && | chmod -R a+rX . && | |||
set-commit-date.py && | set-commit-date.py && | |||
devscripts/build-docs && | devscripts/build-docs && | |||
if [ ! -d build ]; then mkdir build; fi && | if [ ! -d build ]; then mkdir build; fi && | |||
python setup.py sdist && | python setup.py sdist && | |||
for py in 2.7 3.4 3.5 3.6 3.7; do | for py in 2.7 3.4 3.5 3.6 3.7 3.8; do | |||
find build -name '*.py[co]' -delete && | find build -name '*.py[co]' -delete && | |||
python$py setup.py build_ext && | python$py setup.py build_ext && | |||
python$py setup.py build --executable '/usr/bin/env python' && | python$py setup.py build --executable '/usr/bin/env python' && | |||
python$py -m compileall build && | python$py -m compileall build && | |||
python$py -O -m compileall build && | python$py -O -m compileall build && | |||
python$py setup.py bdist_wheel && | python$py setup.py bdist_wheel && | |||
cd dist && | cd dist && | |||
v="`echo $py | sed 's/\.//'`" && | v="`echo $py | sed 's/\.//'`" && | |||
for f in Cheetah3-*-cp$v-*-linux_i686.whl; do | for f in Cheetah3-*-cp$v-*-linux_*.whl; do | |||
if [ $py = 2.7 ]; then | if [ $py = 2.7 ]; then | |||
python3.4 -m auditwheel repair -w . $f | python3.6 -m auditwheel repair -w . $f | |||
else | else | |||
python$py -m auditwheel repair -w . $f | python$py -m auditwheel repair -w . $f | |||
fi && | fi && | |||
rm $f | rm $f | |||
done && | done && | |||
cd .. | cd .. | |||
done && | done && | |||
twine upload --skip-existing dist/* && | twine upload --skip-existing dist/* && | |||
exec rm -rf build dist docs/html Cheetah3.egg-info | exec rm -rf build dist docs/html Cheetah3.egg-info | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |