@@ -6,10 +6,10 @@ set -e -x
66# Compile wheels
77for PYBIN in /opt/python/* /bin; do
88 if [[ " ${PYBIN} " == * " cp27" * ]] || \
9- [[ " ${PYBIN} " == * " cp34" * ]] || \
109 [[ " ${PYBIN} " == * " cp35" * ]] || \
1110 [[ " ${PYBIN} " == * " cp36" * ]] || \
12- [[ " ${PYBIN} " == * " cp37" * ]];
11+ [[ " ${PYBIN} " == * " cp37" * ]] || \
12+ [[ " ${PYBIN} " == * " cp38" * ]];
1313 then
1414 " ${PYBIN} /pip" install tox
1515 " ${PYBIN} /pip" install -U cython
2828# Install new wheels and test
2929for PYBIN in /opt/python/* /bin; do
3030 if [[ " ${PYBIN} " == * " cp27" * ]] || \
31- [[ " ${PYBIN} " == * " cp34" * ]] || \
3231 [[ " ${PYBIN} " == * " cp35" * ]] || \
33- [[ " ${PYBIN} " == * " cp36" * ]];
32+ [[ " ${PYBIN} " == * " cp36" * ]] || \
33+ [[ " ${PYBIN} " == * " cp37" * ]] || \
34+ [[ " ${PYBIN} " == * " cp38" * ]];
3435 then
3536 " ${PYBIN} /pip" uninstall -y python-crfsuite
3637 " ${PYBIN} /pip" install python-crfsuite --no-index -f /io/wheelhouse
4142
4243# If everything works, upload wheels to PyPi
4344travis=$( cat /io/.travis_tag )
44- SAMPLE_PYBIN=" /opt/python/cp35-cp35m /bin"
45+ SAMPLE_PYBIN=" /opt/python/cp37-cp37m /bin"
4546if [[ $travis ]]; then
4647 " ${SAMPLE_PYBIN} /pip" install twine;
4748 " ${SAMPLE_PYBIN} /twine" upload --config-file /io/.pypirc /io/wheelhouse/* .whl;
0 commit comments