Skip to content

Commit

Permalink
Merge pull request #18 from tim-s-ccs/add-test-support-for-newer-pythons
Browse files Browse the repository at this point in the history
Add testing for newer versions of python
  • Loading branch information
tim-s-ccs authored Feb 16, 2024
2 parents 99e3d10 + 769c6d7 commit ae3ad90
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
python-version:
- '3.9'
- '3.10'
- '3.11'

steps:
- uses: actions/checkout@v4

Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

Records breaking changes from major version bumps.

## Release 1.1.0
## 1.2.0

Allow for use with all currently maintained Python versions:
- 3.9
- 3.10
- 3.11

Note, because ccs-digitalmarketplace-utils does not support 3.12 yet, neither can we.

## 1.1.0

Upgrade Flask to v2 and, therefore, Jinja to v3

Expand Down
2 changes: 1 addition & 1 deletion digitalmarketplace_frontend_jinja/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.0'
__version__ = '1.2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
'govuk-frontend-jinja>=2.8.0,<3',
'ccs-digitalmarketplace-utils>=65.0.0',
],
python_requires="~=3.9",
python_requires=">=3.9,<3.12",
)

0 comments on commit ae3ad90

Please sign in to comment.