Skip to content

Commit 64f0ab5

Browse files
authored
Merge pull request #187 from browniebroke/drop-python-3.8
Drop support for end-of-life Python 3.8
2 parents 9f90f1c + 984d151 commit 64f0ab5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- python-version: 3.8
1514
- python-version: 3.9
1615
- python-version: "3.10"
1716
- python-version: "3.11"

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Unreleased
2+
* Drop support for end-of-life Python 3.8 (@browniebroke)
3+
14
## 0.7.1
25
* Add support for Python 3.12, Django 5.0, DRF 3.15 (@browniebroke)
36
* Drop support for Python <3.7, Django <4.2, DRF <3.14 (@browniebroke)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following relations are supported:
1717
Requirements
1818
============
1919

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

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_version(package):
3939
},
4040
include_package_data=True,
4141
zip_safe=False,
42-
python_requires='>=3.8',
42+
python_requires='>=3.9',
4343
classifiers=[
4444
'Development Status :: 4 - Beta',
4545
'Environment :: Web Environment',
@@ -52,7 +52,6 @@ def get_version(package):
5252
'Programming Language :: Python',
5353
'Programming Language :: Python :: 3',
5454
'Programming Language :: Python :: 3 :: Only',
55-
'Programming Language :: Python :: 3.8',
5655
'Programming Language :: Python :: 3.9',
5756
'Programming Language :: Python :: 3.10',
5857
'Programming Language :: Python :: 3.11',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ DJANGO_SETTINGS_MODULE = tests.settings
44

55
[tox]
66
envlist =
7-
py{38,39,310,311,312}-dj42-drf{314,315}-pytest
7+
py{39,310,311,312}-dj42-drf{314,315}-pytest
88
py{310,311,312}-dj50-drf{314,315}-pytest
99
py312-dj50-drf315-mypy
1010
skip_missing_interpreters = true
1111

1212
[gh-actions]
1313
python =
14-
3.8: py38
1514
3.9: py39
1615
3.10: py310
1716
3.11: py311

0 commit comments

Comments
 (0)