summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorShay <hillerys@element.io>2021-12-21 11:37:04 -0800
committerGitHub <noreply@github.com>2021-12-21 11:37:04 -0800
commit87da37374a68b935fe8a9378a7d369448461c128 (patch)
treea1d4f717dcd02f0e403670c4da04f811f93d54a4 /.github/workflows
parentMerge branch 'master' into develop (diff)
downloadsynapse-87da37374a68b935fe8a9378a7d369448461c128.tar.xz
Drop EOL python 3.6 from CI (#11595)
* remove python 3.6 and postgres 9.6 from github workflow

* remove python 3.6 env from tox

* newsfragment

* correct postgres version

* add py310 to tox env list
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml

index 21c9ee7823..cb72e1a233 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml
@@ -76,7 +76,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10"] database: ["sqlite"] toxenv: ["py"] include: @@ -85,9 +85,9 @@ jobs: toxenv: "py-noextras" # Oldest Python with PostgreSQL - - python-version: "3.6" + - python-version: "3.7" database: "postgres" - postgres-version: "9.6" + postgres-version: "10" toxenv: "py" # Newest Python with newest PostgreSQL @@ -167,7 +167,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["pypy-3.6"] + python-version: ["pypy-3.7"] steps: - uses: actions/checkout@v2 @@ -291,8 +291,8 @@ jobs: strategy: matrix: include: - - python-version: "3.6" - postgres-version: "9.6" + - python-version: "3.7" + postgres-version: "10" - python-version: "3.10" postgres-version: "14"