Skip to content

Commit

Permalink
Drop support for Python 3.8 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulgens committed Nov 20, 2024
1 parent 12ea1c1 commit 422406e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ]
python-version: [ 3.9, '3.10', 3.11, 3.12, 3.13 ]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,14 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = ["django>=4.2"]
[project.optional-dependencies]
docs = ["sphinx"]
Expand All @@ -54,7 +53,7 @@ namespaces = false
waffle = ["py.typed"]

[tool.mypy]
python_version = "3.8"
python_version = "3.9"
exclude = "waffle/tests"
disallow_incomplete_defs = true
disallow_untyped_calls = true
Expand All @@ -67,7 +66,7 @@ ignore_missing_imports = true

[tool.ruff]
line-length = 120
target-version = "py38"
target-version = "py39"

[tool.ruff.lint]
select = [
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39}-django{42}
py{39}-django{42}
py{310}-django{42,50,51}
py{311}-django{42,50,51}
py{312}-django{42,50,51}
Expand All @@ -9,7 +9,6 @@ isolated_build = True

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
Expand Down

0 comments on commit 422406e

Please sign in to comment.