Skip to content

Commit 5215727

Browse files
ci: Update test matrix with new releases (11/24) (#5139)
Update our test matrix with new releases of integrated frameworks and libraries. ## How it works - Scan PyPI for all supported releases of all frameworks we have a dedicated test suite for. - Pick a representative sample of releases to run our test suite against. We always test the latest and oldest supported version. - Update [tox.ini](https://github.com/getsentry/sentry-python/blob/master/tox.ini) with the new releases.
1 parent ca19d63 commit 5215727

File tree

5 files changed

+52
-44
lines changed

5 files changed

+52
-44
lines changed

.github/workflows/test-integrations-tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12","3.13"]
32+
python-version: ["3.6","3.7","3.8","3.9","3.10","3.11","3.12","3.13","3.14","3.14t"]
3333
# python3.6 reached EOL and is no longer being supported on
3434
# new versions of hosted runners on Github Actions
3535
# ubuntu-20.04 is the last version that supported python3.6

scripts/populate_tox/config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,10 @@
329329
},
330330
"ray": {
331331
"package": "ray",
332-
"python": ">=3.9",
332+
"python": {
333+
">0.0,<2.52.0": ">=3.9",
334+
">=2.52.0": ">=3.10",
335+
},
333336
"num_versions": 2,
334337
},
335338
"redis": {

0 commit comments

Comments
 (0)