Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 87da373

Browse files
authored
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
1 parent 144b9ed commit 87da373

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
strategy:
7878
matrix:
79-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
79+
python-version: ["3.7", "3.8", "3.9", "3.10"]
8080
database: ["sqlite"]
8181
toxenv: ["py"]
8282
include:
@@ -85,9 +85,9 @@ jobs:
8585
toxenv: "py-noextras"
8686

8787
# Oldest Python with PostgreSQL
88-
- python-version: "3.6"
88+
- python-version: "3.7"
8989
database: "postgres"
90-
postgres-version: "9.6"
90+
postgres-version: "10"
9191
toxenv: "py"
9292

9393
# Newest Python with newest PostgreSQL
@@ -167,7 +167,7 @@ jobs:
167167
runs-on: ubuntu-latest
168168
strategy:
169169
matrix:
170-
python-version: ["pypy-3.6"]
170+
python-version: ["pypy-3.7"]
171171

172172
steps:
173173
- uses: actions/checkout@v2
@@ -291,8 +291,8 @@ jobs:
291291
strategy:
292292
matrix:
293293
include:
294-
- python-version: "3.6"
295-
postgres-version: "9.6"
294+
- python-version: "3.7"
295+
postgres-version: "10"
296296

297297
- python-version: "3.10"
298298
postgres-version: "14"

changelog.d/11595.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Drop EOL python 3.6 and postgres 9.6 from CI.

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = packaging, py36, py37, py38, py39, check_codestyle, check_isort
2+
envlist = packaging, py37, py38, py39, py310, check_codestyle, check_isort
33

44
# we require tox>=2.3.2 for the fix to https://github.com/tox-dev/tox/issues/208
55
minversion = 2.3.2

0 commit comments

Comments
 (0)