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
dyve committed Dec 7, 2024
1 parent adb2c5f commit 69323d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,18 @@ jobs:
needs: [ ruff ]
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
python-version: [3.9, "3.10", 3.11, 3.12]
django-version: [4.2, 5.0, 5.1, "main"]
exclude:
# Django 5.0
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0

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

# Django main
- python-version: 3.8
django-version: "main"
- python-version: 3.9
django-version: "main"

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"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 All @@ -31,7 +30,7 @@ keywords = ["django", "bootstrap", "bootstrap3"]
license = {file = "LICENSE"}
name = "django-bootstrap3"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
version = "24.3"

[project.urls]
Expand All @@ -45,7 +44,7 @@ Source = "https://github.com/zostera/django-bootstrap3"
fix = false
line-length = 120
src = ["src"]
target-version = "py38"
target-version = "py39"

[tool.ruff.lint]
fixable = [
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,main},
py311-{4.2,5.0,5.1,main},
Expand All @@ -11,7 +10,6 @@ envlist =

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

0 comments on commit 69323d8

Please sign in to comment.