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

Commit

Permalink
Drop EOL python 3.6 from CI (#11595)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
H-Shay committed Dec 21, 2021
1 parent 144b9ed commit 87da373
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions changelog.d/11595.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop EOL python 3.6 and postgres 9.6 from CI.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = packaging, py36, py37, py38, py39, check_codestyle, check_isort
envlist = packaging, py37, py38, py39, py310, check_codestyle, check_isort

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

0 comments on commit 87da373

Please sign in to comment.