Skip to content

Commit

Permalink
drop 3.8, add 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-shaw committed Oct 15, 2024
1 parent b413c67 commit 4b17f83
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added

- [GOV.UK Frontend v5.7.1](https://github.com/alphagov/govuk-frontend/releases/tag/v5.7.1) support
- Python 3.13 support

### Removed

- Python 3.8 support

## [3.3.0](https://github.com/LandRegistry/govuk-frontend-jinja/releases/tag/3.3.0) - 29/08/2024

Expand Down
2 changes: 1 addition & 1 deletion requirements-test-3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ itsdangerous==2.2.0
# via flask
jinja2==3.1.4
# via flask
markupsafe==2.1.5
markupsafe==3.0.1
# via
# jinja2
# werkzeug
Expand Down
2 changes: 1 addition & 1 deletion requirements-test-3.11.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ itsdangerous==2.2.0
# via flask
jinja2==3.1.4
# via flask
markupsafe==2.1.5
markupsafe==3.0.1
# via
# jinja2
# werkzeug
Expand Down
2 changes: 1 addition & 1 deletion requirements-test-3.12.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ itsdangerous==2.2.0
# via flask
jinja2==3.1.4
# via flask
markupsafe==2.1.5
markupsafe==3.0.1
# via
# jinja2
# werkzeug
Expand Down
10 changes: 3 additions & 7 deletions requirements-test-3.8.txt → requirements-test-3.13.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.13
# by the following command:
#
# pip-compile --output-file=requirements-test-3.8.txt requirements-test.in
# pip-compile --output-file=requirements-test-3.13.txt requirements-test.in
#
blinker==1.8.2
# via flask
Expand All @@ -12,13 +12,11 @@ flake8==7.1.1
# via -r requirements-test.in
flask==3.0.3
# via -r requirements-test.in
importlib-metadata==8.4.0
# via flask
itsdangerous==2.2.0
# via flask
jinja2==3.1.4
# via flask
markupsafe==2.1.5
markupsafe==3.0.1
# via
# jinja2
# werkzeug
Expand All @@ -30,5 +28,3 @@ pyflakes==3.2.0
# via flake8
werkzeug==3.0.4
# via flask
zipp==3.20.1
# via importlib-metadata
6 changes: 3 additions & 3 deletions requirements-test-3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ flake8==7.1.1
# via -r requirements-test.in
flask==3.0.3
# via -r requirements-test.in
importlib-metadata==8.4.0
importlib-metadata==8.5.0
# via flask
itsdangerous==2.2.0
# via flask
jinja2==3.1.4
# via flask
markupsafe==2.1.5
markupsafe==3.0.1
# via
# jinja2
# werkzeug
Expand All @@ -30,5 +30,5 @@ pyflakes==3.2.0
# via flake8
werkzeug==3.0.4
# via flask
zipp==3.20.1
zipp==3.20.2
# via importlib-metadata
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@
package_data={"govuk_frontend_jinja": components},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: User Interfaces",
"Topic :: Text Processing :: Markup :: HTML",
],
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=["jinja2!=3.0.0,!=3.0.1"],
)

0 comments on commit 4b17f83

Please sign in to comment.