Skip to content

Commit 18e91c4

Browse files
committed
Drop Python 3.8 support
We also add a release note for Python 3.12 support. Signed-off-by: Stephen Finucane <[email protected]>
1 parent 009dc90 commit 18e91c4

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
matrix:
3030
# NOTE: If you add a version here, don't forget to update the
3131
# '[gh-actions]' section in tox.ini
32-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
32+
python: ["3.9", "3.10", "3.11", "3.12"]
3333
db: [postgres, mysql, sqlite3]
3434
env:
3535
DATABASE_TYPE: "${{ matrix.db }}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
features:
3+
- |
4+
`Python 3.12 <https://www.python.org/downloads/release/python-3120/>`_ is
5+
now supported.
6+
upgrade:
7+
- |
8+
Python 3.8 is no longer supported. It is no longer supported upstream and
9+
most distributions provide a newer version.

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.2
3-
envlist = pep8,docs,py{38,39,310,311}-django42,py{310,311,312}-django50
3+
envlist = pep8,docs,py{39,310,311}-django42,py{310,311,312}-django50
44

55
[testenv]
66
skip_install = true
@@ -71,7 +71,6 @@ commands =
7171

7272
[gh-actions]
7373
python =
74-
3.8: py38
7574
3.9: py39
7675
3.10: py310
7776
3.11: py311

0 commit comments

Comments
 (0)