Latest twine doesn't support py3.5 [build wheel]

This commit is contained in:
matham 2019-12-29 14:02:59 -05:00 committed by GitHub
parent 7eb7bbb8ee
commit a2ded0d7b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -30,7 +30,12 @@ install_kivy_test_run_pip_deps() {
"from kivy.tools.packaging.cython_cfg import get_cython_versions; print(get_cython_versions()[0])" \
--config "kivy:log_level:error"
)
python3 -m pip install -I "$CYTHON_INSTALL" coveralls twine
python3 -m pip install -I "$CYTHON_INSTALL" coveralls
if [ $(python3 -c 'import sys; print("{}{}".format(*sys.version_info))') -le "35" ]; then
python3 -m pip install twine~=1.15.0
else
python3 -m pip install twine
fi
}
install_kivy_test_wheel_run_pip_deps() {