Skip to content

Commit

Permalink
Drop support for Python 3.8, add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
JaapJoris committed Oct 17, 2024
1 parent 3cbfc20 commit d50d3d9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ on:
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
matrix:
python-version:
- 3.8
- 3.9
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ well-structured templates, not to fix broken ones.

## Installation

DjHTML requires Python 3.8 or higher and is compatible with all
DjHTML requires Python 3.9 or higher and is compatible with all
operating systems supported by Python. Install DjHTML with the
following command:

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import nox


@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
def tests(session):
session.run("python", "-m", "unittest")
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = djhtml
version = 3.0.6
version = 3.0.7
description = Django/Jinja template indenter
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -11,14 +11,14 @@ license = GPLv3+
classifiers =
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
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
python_requires = '>=3.8'
python_requires = '>=3.9'

[options]
packages = find:
Expand Down

0 comments on commit d50d3d9

Please sign in to comment.