summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-11-20 19:52:56 +0100
committerGitHub <noreply@github.com>2023-11-20 19:52:56 +0100
commit00a950f923435188a6c1d4ccdcb42c37cdc3976a (patch)
treeed0d9611ec07985239a801d8903cfbd7a3c192ce
parentf1697ec7c8fc851baa9c890a605acb67f04210f2 (diff)
Refs #34900 -- Added Python 3.13 to daily builds.
-rw-r--r--.github/workflows/schedule_tests.yml1
-rw-r--r--tests/requirements/py3.txt6
2 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml
index 33f33a9708..edd4bd16be 100644
--- a/.github/workflows/schedule_tests.yml
+++ b/.github/workflows/schedule_tests.yml
@@ -19,6 +19,7 @@ jobs:
- '3.10'
- '3.11'
- '3.12'
+ - '3.13-dev'
name: Windows, SQLite, Python ${{ matrix.python-version }}
continue-on-error: true
steps:
diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt
index b915eaab39..43eb1d1d67 100644
--- a/tests/requirements/py3.txt
+++ b/tests/requirements/py3.txt
@@ -4,10 +4,10 @@ argon2-cffi >= 19.2.0
bcrypt
black
docutils >= 0.19
-geoip2
+geoip2; python_version < '3.13'
jinja2 >= 2.11.0
-numpy
-Pillow >= 6.2.1
+numpy; sys.platform != 'win32' or python_version < '3.13'
+Pillow >= 6.2.1; sys.platform != 'win32' or python_version < '3.13'
# pylibmc/libmemcached can't be built on Windows.
pylibmc; sys.platform != 'win32'
pymemcache >= 3.4.0