Skip to content

Commit

Permalink
Drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Nov 6, 2024
1 parent 628d23f commit 2a6d125
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 10 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12] # 3.13 can be supported if lxml supports 3.13
python-version: [3.9, "3.10", 3.11, 3.12] # 3.13 can be supported if lxml supports 3.13
django-version: [4.2, 5.0, 5.1, master]
exclude:
# Django 4.2
Expand All @@ -25,22 +25,16 @@ jobs:
django-version: 4.2

# Django 5.0
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0
- python-version: 3.13
django-version: 5.0

# Django 5.1
- python-version: 3.8
django-version: 5.1
- python-version: 3.9
django-version: 5.1

# master
- python-version: 3.8
django-version: master
- python-version: 3.9
django-version: master

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"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",
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
args_are_paths = false
envlist =
py38-{4.2},
py39-{4.2},
py310{4.2,5.0,5.1,master},
py311{4.2,5.0,5.1,master},
Expand All @@ -13,7 +12,6 @@ envlist =

[testenv]
basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
Expand Down

0 comments on commit 2a6d125

Please sign in to comment.