Skip to content

Commit 064d419

Browse files
committed
chore: drop long-unsupported Python 3.7
Python 3.7 hasn't been supported in ages, and it's causing errors on CI actions. Let's just drop it.
1 parent 6e92eb7 commit 064d419

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
uses: fabiocaccamo/create-matrix-action@v3
1616
with:
1717
matrix: |
18-
python-version {3.7}, django-version {2.0,2.1,2.2,3.0,3.1}
1918
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
2019
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
2120
python-version {3.10}, django-version {3.2,4.0,4.1,4.2,5.0,5.1}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers = [
2020
"License :: OSI Approved :: Apache Software License",
2121
"Operating System :: OS Independent",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.7",
2423
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
@@ -29,7 +28,7 @@ classifiers = [
2928
]
3029

3130
[tool.poetry.dependencies]
32-
python = "^3.7"
31+
python = "^3.8"
3332

3433
[tool.poetry.group.dev.dependencies]
3534
coverage = "7.*"

0 commit comments

Comments
 (0)