Skip to content

Commit

Permalink
chore: drop long-unsupported Python 3.7
Browse files Browse the repository at this point in the history
Python 3.7 hasn't been supported in ages, and it's causing errors on CI actions.
Let's just drop it.
  • Loading branch information
mgrdcm committed Jan 15, 2025
1 parent 6e92eb7 commit 064d419
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
uses: fabiocaccamo/create-matrix-action@v3
with:
matrix: |
python-version {3.7}, django-version {2.0,2.1,2.2,3.0,3.1}
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
python-version {3.10}, django-version {3.2,4.0,4.1,4.2,5.0,5.1}
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -29,7 +28,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"

[tool.poetry.group.dev.dependencies]
coverage = "7.*"
Expand Down

0 comments on commit 064d419

Please sign in to comment.