Skip to content

Commit

Permalink
Dropped support for EOL Python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
carltongibson committed Dec 28, 2024
1 parent 2a644e1 commit ccde000
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Version 25.1 (Unreleased)
You should use `drf-spectacular <https://drf-spectacular.readthedocs.io/en/latest/>`_
for generating OpenAPI schemas with DRF.

* Dropped support for EOL Python 3.8.

Version 24.3 (2024-08-02)
-------------------------

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ classifiers = [
"Framework :: Django :: 5.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = ["Django>=4.2"]
dynamic = ["version"]

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
{py38, py39, py310, py311, py312}-django42,
{py39, py310, py311, py312}-django42,
{py310, py311, py312}-django50,
{py310, py311, py312}-django51,
{py310, py311, py312}-latest,
Expand Down

0 comments on commit ccde000

Please # to comment.