summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-10-24 21:27:44 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-10-25 11:52:41 +0200
commit4a7467892bb60f9381b5c548d4600804c983c5d1 (patch)
treeccba3ea5c5cd1d7fffcac2bc889eca95b446753d
parent9d1ffd5dcdcc0f2f719f86a9a30ce08a67641f10 (diff)
downloadcython-4a7467892bb60f9381b5c548d4600804c983c5d1.tar.gz
Use newer test dependencies in Py3.6+. (Excluding 3.10 for now to give the projects a bit more time.)
-rw-r--r--Tools/ci-run.sh2
-rw-r--r--test-requirements-cpython.txt5
2 files changed, 1 insertions, 6 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index e8d4c7a96..2a8f2e22b 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -74,7 +74,7 @@ else
if [[ $PYTHON_VERSION != *"-dev" || $COVERAGE == "1" ]]; then
python -m pip install -r test-requirements.txt || exit 1
- if [[ $PYTHON_VERSION != "pypy"* && $PYTHON_VERSION != "3."[4789]* ]]; then
+ if [[ $PYTHON_VERSION != "pypy"* && $PYTHON_VERSION != "3."[1]* ]]; then
python -m pip install -r test-requirements-cpython.txt || exit 1
fi
fi
diff --git a/test-requirements-cpython.txt b/test-requirements-cpython.txt
index 2ab863eaf..39c438f27 100644
--- a/test-requirements-cpython.txt
+++ b/test-requirements-cpython.txt
@@ -1,7 +1,2 @@
jupyter
line_profiler
-# transitive dependency of jupyter (17.0+ lacks wheels for Py3.4)
-pyzmq<17
-pyrsistent<0.16
-qtconsole<5
-decorator<5