Skip to content

Commit d3ab996

Browse files
authored
Merge pull request #125 from rtts/rc-3.0.7
Drop support for Python 3.8, add support for Python 3.13
2 parents 3cbfc20 + d50d3d9 commit d3ab996

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/main.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ on:
99
jobs:
1010
tests:
1111
name: Python ${{ matrix.python-version }}
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313

1414
strategy:
1515
matrix:
1616
python-version:
17-
- 3.8
18-
- 3.9
17+
- '3.9'
1918
- '3.10'
2019
- '3.11'
20+
- '3.12'
21+
- '3.13'
2122

2223
steps:
2324
- uses: actions/checkout@v2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ well-structured templates, not to fix broken ones.
3030

3131
## Installation
3232

33-
DjHTML requires Python 3.8 or higher and is compatible with all
33+
DjHTML requires Python 3.9 or higher and is compatible with all
3434
operating systems supported by Python. Install DjHTML with the
3535
following command:
3636

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import nox
22

33

4-
@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
4+
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
55
def tests(session):
66
session.run("python", "-m", "unittest")

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = djhtml
3-
version = 3.0.6
3+
version = 3.0.7
44
description = Django/Jinja template indenter
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -11,14 +11,14 @@ license = GPLv3+
1111
classifiers =
1212
Programming Language :: Python :: 3
1313
Programming Language :: Python :: 3 :: Only
14-
Programming Language :: Python :: 3.8
1514
Programming Language :: Python :: 3.9
1615
Programming Language :: Python :: 3.10
1716
Programming Language :: Python :: 3.11
1817
Programming Language :: Python :: 3.12
18+
Programming Language :: Python :: 3.13
1919
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
2020
Operating System :: OS Independent
21-
python_requires = '>=3.8'
21+
python_requires = '>=3.9'
2222

2323
[options]
2424
packages = find:

0 commit comments

Comments
 (0)