diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-22 15:36:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 15:36:10 +0200 |
| commit | 5e2bbebed9f36bb9d15f168444e7982287761877 (patch) | |
| tree | aa9f0408cf05b816cdb3dd22ebec2625f837a5a0 | |
| parent | 185b049e9e72a5ff4b07e33605e10eb4f52ca74c (diff) | |
Refs #36664 -- Added Python 3.15 to daily builds.
| -rw-r--r-- | .github/workflows/schedule_tests.yml | 1 | ||||
| -rw-r--r-- | tests/requirements/py3.txt | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml index 402659b338..5490c35a4c 100644 --- a/.github/workflows/schedule_tests.yml +++ b/.github/workflows/schedule_tests.yml @@ -19,6 +19,7 @@ jobs: - '3.12' - '3.13' - '3.14' + - '3.15-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 4fbf425e48..e07f97ef69 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -6,8 +6,8 @@ black >= 25.9.0 docutils >= 0.22 geoip2 >= 4.8.0 jinja2 >= 2.11.0 -numpy >= 1.26.0 -Pillow >= 10.1.0 +numpy >= 1.26.0; sys.platform != 'win32' or python_version < '3.15' +Pillow >= 10.1.0; sys.platform != 'win32' or python_version < '3.15' # pylibmc/libmemcached can't be built on Windows. pylibmc; sys_platform != 'win32' pymemcache >= 3.4.0 |
