@@ -6,10 +6,10 @@ set -e -x
6
6
# Compile wheels
7
7
for PYBIN in /opt/python/* /bin; do
8
8
if [[ " ${PYBIN} " == * " cp27" * ]] || \
9
- [[ " ${PYBIN} " == * " cp34" * ]] || \
10
9
[[ " ${PYBIN} " == * " cp35" * ]] || \
11
10
[[ " ${PYBIN} " == * " cp36" * ]] || \
12
- [[ " ${PYBIN} " == * " cp37" * ]];
11
+ [[ " ${PYBIN} " == * " cp37" * ]] || \
12
+ [[ " ${PYBIN} " == * " cp38" * ]];
13
13
then
14
14
" ${PYBIN} /pip" install tox
15
15
" ${PYBIN} /pip" install -U cython
28
28
# Install new wheels and test
29
29
for PYBIN in /opt/python/* /bin; do
30
30
if [[ " ${PYBIN} " == * " cp27" * ]] || \
31
- [[ " ${PYBIN} " == * " cp34" * ]] || \
32
31
[[ " ${PYBIN} " == * " cp35" * ]] || \
33
- [[ " ${PYBIN} " == * " cp36" * ]];
32
+ [[ " ${PYBIN} " == * " cp36" * ]] || \
33
+ [[ " ${PYBIN} " == * " cp37" * ]] || \
34
+ [[ " ${PYBIN} " == * " cp38" * ]];
34
35
then
35
36
" ${PYBIN} /pip" uninstall -y python-crfsuite
36
37
" ${PYBIN} /pip" install python-crfsuite --no-index -f /io/wheelhouse
41
42
42
43
# If everything works, upload wheels to PyPi
43
44
travis=$( cat /io/.travis_tag )
44
- SAMPLE_PYBIN=" /opt/python/cp35-cp35m /bin"
45
+ SAMPLE_PYBIN=" /opt/python/cp37-cp37m /bin"
45
46
if [[ $travis ]]; then
46
47
" ${SAMPLE_PYBIN} /pip" install twine;
47
48
" ${SAMPLE_PYBIN} /twine" upload --config-file /io/.pypirc /io/wheelhouse/* .whl;
0 commit comments