Skip to content

Commit 8292097

Browse files
committed
drop support for python 3.7
1 parent fbc215f commit 8292097

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,20 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-rc.1']
10+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-rc.1']
1111
django-version:
1212
- '3.2' # LTS April 2024
1313
- '4.2' # LTS April 2026
1414
- '5.0' # April 2025
1515
- '5.1' # December 2025
1616
exclude:
17-
- python-version: '3.7'
18-
django-version: '5.0'
19-
- python-version: '3.7'
20-
django-version: '4.2'
2117
- python-version: '3.8'
2218
django-version: '5.0'
2319
- python-version: '3.9'
2420
django-version: '5.0'
2521
- python-version: '3.11'
2622
django-version: '3.2'
2723
- python-version: '3.12'
28-
django-version: '3.2'
29-
- python-version: '3.7'
3024
django-version: '5.1'
3125
- python-version: '3.8'
3226
django-version: '5.1'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ classifiers = [
2424
"License :: OSI Approved :: MIT License",
2525
"Natural Language :: English",
2626
"Programming Language :: Python",
27-
"Programming Language :: Python :: 3.7",
2827
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",
@@ -43,7 +42,7 @@ packages = [
4342
exclude = ["django_enum/tests"]
4443

4544
[tool.poetry.dependencies]
46-
python = ">=3.7,<4.0"
45+
python = ">=3.8,<4.0"
4746
Django = ">=3.2,<6.0"
4847
enum-properties = {version = "^1.7.0", optional = true}
4948
django-filter = {version = ">=21", optional = true}

0 commit comments

Comments
 (0)