diff options
author | Eric Eastwood <erice@element.io> | 2023-07-05 18:45:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 18:45:42 -0500 |
commit | 561d06b481176f61ed12f5a4723b127ff8624662 (patch) | |
tree | dd8698aac20317b551250e90c28dd5dc5c3e8042 /.ci | |
parent | Add basic read/write lock (#15782) (diff) | |
download | synapse-561d06b481176f61ed12f5a4723b127ff8624662.tar.xz |
Remove support for Python 3.7 (#15851)
Fix https://github.com/matrix-org/synapse/issues/15836
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/calculate_jobs.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.ci/scripts/calculate_jobs.py b/.ci/scripts/calculate_jobs.py index b41ec0b6e2..c2c18b48e3 100755 --- a/.ci/scripts/calculate_jobs.py +++ b/.ci/scripts/calculate_jobs.py @@ -29,11 +29,12 @@ IS_PR = os.environ["GITHUB_REF"].startswith("refs/pull/") # First calculate the various trial jobs. # -# For each type of test we only run on Py3.7 on PRs +# For PRs, we only run each type of test with the oldest Python version supported (which +# is Python 3.8 right now) trial_sqlite_tests = [ { - "python-version": "3.7", + "python-version": "3.8", "database": "sqlite", "extras": "all", } @@ -46,13 +47,13 @@ if not IS_PR: "database": "sqlite", "extras": "all", } - for version in ("3.8", "3.9", "3.10", "3.11") + for version in ("3.9", "3.10", "3.11") ) trial_postgres_tests = [ { - "python-version": "3.7", + "python-version": "3.8", "database": "postgres", "postgres-version": "11", "extras": "all", @@ -71,7 +72,7 @@ if not IS_PR: trial_no_extra_tests = [ { - "python-version": "3.7", + "python-version": "3.8", "database": "sqlite", "extras": "", } |