summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorda-woods <dw-git@d-woods.co.uk>2022-07-17 12:20:14 +0100
committerda-woods <dw-git@d-woods.co.uk>2022-07-17 12:20:14 +0100
commit3a919f5cb689ac0e72d4431515ab27171f2e1d72 (patch)
treef345e6fffa9a067cd3c7f197ec7091831636fe05
parent4989461fa51c8cb99c94476f8cdc446f1ff82ab8 (diff)
downloadcython-3a919f5cb689ac0e72d4431515ab27171f2e1d72.tar.gz
setup enum34 on pypy2.7
-rw-r--r--Tools/ci-run.sh2
-rw-r--r--test-requirements-pypy27.txt1
2 files changed, 3 insertions, 0 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index 4309fd4ad..0585f9a04 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -76,6 +76,8 @@ else
if [[ $PYTHON_VERSION != "pypy"* && $PYTHON_VERSION != "3."[1]* ]]; then
python -m pip install -r test-requirements-cpython.txt || exit 1
+ elif [[ $PYTHON_VERSION == "pypy-2.7" ]]; then
+ python -m pip install -r test-requirements-pypy27.txt || exit 1
fi
fi
fi
diff --git a/test-requirements-pypy27.txt b/test-requirements-pypy27.txt
new file mode 100644
index 000000000..369b7225a
--- /dev/null
+++ b/test-requirements-pypy27.txt
@@ -0,0 +1 @@
+enum34==1.1.10