Skip to content

Commit

Permalink
add py312
Browse files Browse the repository at this point in the history
  • Loading branch information
vegu committed Mar 18, 2024
1 parent b715a45 commit 16ecf0a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@


## Unreleased
### Added
- {'python': '3.12 support'}
### Fixed
- fix reversional handler to only update version field on HandleRef models (thanks to @ercpe)
- fix reversion signal handler to only update version field on HandleRef models (thanks to @ercpe)


## 2.0.0
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Unreleased:
added: []
added:
- python: 3.12 support
fixed:
- fix reversional handler to only update version field on HandleRef models (thanks to @ercpe)
- fix reversion signal handler to only update version field on HandleRef models (thanks to @ercpe)
changed: []
deprecated: []
removed: []
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]

packages = [{ include = "django_handleref", from = "src" }]
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310,311}-django{32,40,42}-reversion{3,4,5}
py{38,39,310,311,312}-django{32,40,42}-reversion{3,4,5}
isolated_build = true

[gh-actions]
Expand All @@ -9,6 +9,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
setenv =
Expand Down

0 comments on commit 16ecf0a

Please sign in to comment.