Skip to content

Commit

Permalink
Drop support for Python 3.8 as it's EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Oct 29, 2024
1 parent 639de87 commit 2223acc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
fail-fast: false
matrix:
include:
- python-version: 3.8
- python-version: 3.9
- python-version: "3.10"
- python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The following relations are supported:
Requirements
============

- Python (3.8, 3.9, 3.10, 3.11, 3.12)
- Python (3.9, 3.10, 3.11, 3.12)
- Django (4.2, 5.0)
- djangorestframework (3.14+)

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_version(package):
},
include_package_data=True,
zip_safe=False,
python_requires='>=3.8',
python_requires='>=3.9',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand All @@ -52,7 +52,6 @@ def get_version(package):
'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
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ DJANGO_SETTINGS_MODULE = tests.settings

[tox]
envlist =
py{38,39,310,311,312}-dj42-drf{314,315}-pytest
py{39,310,311,312}-dj42-drf{314,315}-pytest
py{310,311,312}-dj50-drf{314,315}-pytest
py312-dj50-drf315-mypy
skip_missing_interpreters = true

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

0 comments on commit 2223acc

Please sign in to comment.