Skip to content

Commit b285fda

Browse files
authored
Merge pull request scrapinghub#141 from Gerrit-K/fix-python-version-check
Fix python version checks in install script
2 parents 6927575 + 06c025c commit b285fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.manylinux-install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ for PYBIN in /opt/python/*/bin; do
99
[[ "${PYBIN}" == *"cp36"* ]] || \
1010
[[ "${PYBIN}" == *"cp37"* ]] || \
1111
[[ "${PYBIN}" == *"cp38"* ]] || \
12-
[[ "${PYBIN}" == *"cp39"* ]];
12+
[[ "${PYBIN}" == *"cp39"* ]] || \
1313
[[ "${PYBIN}" == *"cp310"* ]];
1414
then
1515
"${PYBIN}/pip" install tox
@@ -32,7 +32,7 @@ for PYBIN in /opt/python/*/bin; do
3232
[[ "${PYBIN}" == *"cp36"* ]] || \
3333
[[ "${PYBIN}" == *"cp37"* ]] || \
3434
[[ "${PYBIN}" == *"cp38"* ]] || \
35-
[[ "${PYBIN}" == *"cp39"* ]];
35+
[[ "${PYBIN}" == *"cp39"* ]] || \
3636
[[ "${PYBIN}" == *"cp310* ]];
3737
then
3838
"${PYBIN}/pip" uninstall -y python-crfsuite

0 commit comments

Comments
 (0)