Skip to content

Commit

Permalink
Dropped support for Python 3.7 (#487)
Browse files Browse the repository at this point in the history
This reached EOL on 2023-06-27.
  • Loading branch information
clintonb authored Jul 25, 2023
1 parent 1d7a097 commit 2b78d9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
python-version: [ 3.8, 3.9, '3.10' ]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = ["django>=3.2"]

[project.urls]
Expand All @@ -50,7 +49,7 @@ namespaces = false
waffle = ["py.typed"]

[tool.mypy]
python_version = "3.7"
python_version = "3.8"
exclude = "waffle/tests"
disallow_incomplete_defs = true
disallow_untyped_calls = true
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tox]
envlist =
py{37,38,39,310}-django{32}
py{38,39,310}-django{32}
py{38,39,310}-django{40,41}
isolated_build = True

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[testenv]
allowlist_externals = ./run.sh
deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
Expand Down

0 comments on commit 2b78d9c

Please sign in to comment.