Skip to content

Commit db1b755

Browse files
committed
Update python supported versions
1 parent bc3fd97 commit db1b755

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test_suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
strategy:
1111
matrix:
1212
python-version:
13-
- "3.7"
1413
- "3.8"
1514
- "3.9"
1615
- "3.10"
1716
- "3.11"
17+
- "3.12"
1818
steps:
1919
- uses: actions/checkout@v3
2020

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ def readfile(filename):
4343
"License :: OSI Approved :: MIT License",
4444
"Operating System :: OS Independent",
4545
"Programming Language :: Python :: 3",
46-
"Programming Language :: Python :: 3.7",
4746
"Programming Language :: Python :: 3.8",
4847
"Programming Language :: Python :: 3.9",
4948
"Programming Language :: Python :: 3.10",
5049
"Programming Language :: Python :: 3.11",
50+
"Programming Language :: Python :: 3.12",
5151
"Topic :: Software Development :: Libraries :: Python Modules",
5252
],
5353
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310}-dj-3.2
3+
py{38,39,310}-dj-3.2
44
py{38,39,310,311}-dj-4.1
55
py{310,311}-dj-master
66

77
[gh-actions]
88
python =
9-
3.7: py37
109
3.8: py38
1110
3.9: py39
1211
3.10: py310
1312
3.11: py311
13+
3.12: py312
1414

1515
[testenv]
1616
usedevelop = true

0 commit comments

Comments
 (0)