Skip to content

Commit

Permalink
drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubMastalerz authored and jams2 committed Nov 20, 2024
1 parent 7736c9a commit 9c5d341
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
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
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Unreleased
- Update for Wagtail 6.3
- Add support for Python 3.13
- Drop support for Wagtal 6.0 and 6.1
- Drop support for Python 3.8

4.2.1
=====
Expand Down
2 changes: 1 addition & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exclude = ["dist","build","venv",".venv",".tox",".git"]
line-length = 88
target-version = "py38"
target-version = "py39"

[lint]
ignore = [
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[tox]
minversion = 3.21.4
envlist =
py{38,39,310,311}-django42-wagtail{52,62}-factoryboy{32,33}
py{39,310,311}-django42-wagtail{52,62}-factoryboy{32,33}
py{310,311,312}-django50-wagtail{52,62,63}-factoryboy{32,33}
py{310,311,312,313}-django51-wagtail63-factoryboy{32,33}
coverage-report
lint

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

0 comments on commit 9c5d341

Please sign in to comment.