Skip to content

Commit 36bea7c

Browse files
committed
update manylinux: drop Python 3.4, add Python 3.8
1 parent 26afe7d commit 36bea7c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.manylinux-install.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ set -e -x
66
# Compile wheels
77
for 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
@@ -28,9 +28,10 @@ done
2828
# Install new wheels and test
2929
for 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
@@ -41,7 +42,7 @@ done
4142

4243
# If everything works, upload wheels to PyPi
4344
travis=$( cat /io/.travis_tag )
44-
SAMPLE_PYBIN="/opt/python/cp35-cp35m/bin"
45+
SAMPLE_PYBIN="/opt/python/cp37-cp37m/bin"
4546
if [[ $travis ]]; then
4647
"${SAMPLE_PYBIN}/pip" install twine;
4748
"${SAMPLE_PYBIN}/twine" upload --config-file /io/.pypirc /io/wheelhouse/*.whl;

0 commit comments

Comments
 (0)