Skip to content

Commit ffeaac0

Browse files
authored
Drop Python 3.8 (#439)
# Changes ## Drop Python 3.8 Python 3.8 reached end-of-life status on October 7th, 2024 (see [PEP 569](https://peps.python.org/pep-0569/)).
2 parents d760bde + 269c894 commit ffeaac0

File tree

5 files changed

+437
-290
lines changed

5 files changed

+437
-290
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
python-version: ['3.10', '3.13']
1111
django-version: ['4.2', '5.0', '5.1']
1212
include:
13-
- python-version: '3.8'
14-
django-version: '4.2'
1513
- python-version: '3.9'
1614
django-version: '4.2'
1715
steps:

CHANGES

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
- _Add your latest changes from PRs here_
66

7+
### Breaking changes (#439)
8+
9+
- Drop Python 3.8
10+
11+
The minimum version of Python in this and future releases is Python 3.9.
12+
13+
Python 3.8 reached end-of-life status on October 7th, 2024 (see PEP 569).
14+
715
## django-docutils 0.27.0 (2024-11-26)
816

917
_Maintenance release only, no bug fixes or new features_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ DJANGO_DOCUTILS_LIB_TEXT = {
118118

119119
## More information
120120

121-
- Python 3.8+
121+
- Python 3.9+
122122
- Django 4.2+
123123

124124
[![Docs](https://github.com/tony/django-docutils/workflows/docs/badge.svg)](https://github.com/tony/django-docutils/actions?query=workflow%3A%22Docs%22)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "django-docutils"
33
version = "0.27.0"
44
description = "Docutils (a.k.a. reStructuredText, reST, RST) support for django."
5-
requires-python = ">=3.8,<4.0"
5+
requires-python = ">=3.9,<4.0"
66
authors = [
77
{name = "Tony Narlock", email = "tony@git-pull.com"}
88
]
@@ -18,7 +18,6 @@ classifiers = [
1818
'License :: OSI Approved :: MIT License',
1919
'Natural Language :: English',
2020
'Programming Language :: Python :: 3',
21-
'Programming Language :: Python :: 3.8',
2221
'Programming Language :: Python :: 3.9',
2322
'Programming Language :: Python :: 3.10',
2423
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)