Skip to content

Commit c9dd446

Browse files
committed
Drop support for Python 3.8
It's been EOL for a while now.
1 parent 7f31a2d commit c9dd446

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.8
16+
python-version: 3.9
1717
- run: pip install setuptools twine wheel
1818
- run: python setup.py sdist bdist_wheel
1919
- run: twine upload --verbose --username '__token__' dist/*

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: [ '3.8', '3.9', '3.10', '3.11' ]
10+
python: [ '3.9', '3.10', '3.11' ]
1111
name: python${{ matrix.python }}, django-${{ matrix.django }}
1212
steps:
1313
- uses: actions/checkout@v3

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: "ubuntu-22.04"
55
tools:
6-
python: "3.8"
6+
python: "3.9"
77

88
python:
99
install:

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
Changelog
22
---------
33

4-
v4.1.0
4+
v5.0.0
55
~~~~~~
66

77
- Fixed documentation not rendering on readthedocs.
8+
- Drop support for Python 3.8.
89
- Add support for Python 3.11.
910
- Add support for Django 4.1 and 4.2.
1011

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers = [
2222
"License :: OSI Approved :: ISC License (ISCL)",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python :: 3",
25-
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
@@ -52,7 +51,7 @@ issues = "https://github.com/WhyNotHugo/django-renderpdf/issues/"
5251
funding = "https://whynothugo.nl/sponsor/"
5352

5453
[tool.black]
55-
target-version = ['py38']
54+
target-version = ['py39']
5655

5756
[tool.coverage.run]
5857
source = ["django_renderpdf"]
@@ -67,7 +66,7 @@ addopts = """
6766
DJANGO_SETTINGS_MODULE = "testapp.settings"
6867

6968
[tool.ruff]
70-
target-version = "py38"
69+
target-version = "py39"
7170

7271
[tool.ruff.lint]
7372
select = [

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py38-django32
43
py{39,310,311}-django{32,42}
54

65
[testenv]

0 commit comments

Comments
 (0)