Skip to content

Commit

Permalink
Support python 3.11 and 3.12 (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink authored Jun 27, 2024
1 parent 6b89690 commit 15154f3
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Version history

We follow Semantic Versions since the `0.1.0` release.
We follow [Semantic Versioning](https://semver.org/) since the `0.1.0` release.

## Version 1.3.1

### Features

- Explicitly support `python3.11` and `python3.12`

## Version 1.3.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $ pip install jinja2-git
## Reasoning

This plugin is used to render commit hash in `jinja2` templates. We are
using it to render our template version in `cookicutter`:
using it to render our template version in `cookiecutter`:

- [wemake-django-template](https://github.com/wemake-services/wemake-django-template)
- [wemake-vue-template](https://github.com/wemake-services/wemake-vue-template)
Expand Down
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "jinja2-git"
version = "1.3.0"
version = "1.3.1"
description = "Jinja2 extension to handle git-specific things"

license = "MIT"
Expand Down Expand Up @@ -29,6 +29,14 @@ classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
]

[tool.poetry.urls]
Expand Down

0 comments on commit 15154f3

Please sign in to comment.