Skip to content

Commit

Permalink
Confirmed support for Python 3.12 (#164)
Browse files Browse the repository at this point in the history
Co-authored-by: Anders <6058745+ddabble@users.noreply.github.com>
  • Loading branch information
max-muoto and ddabble committed Oct 22, 2023
1 parent 6519d3b commit 6b6d0a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ X.Y (unreleased)

- **BACKWARD-INCOMPATIBLE** Dropped support for Python 3.7.

- Confirmed support for Python 3.12.

This comment has been minimized.

Copy link
@max-muoto

max-muoto Oct 22, 2023

Author Contributor

@ddabble Curious, what's the process look like for making a formal release from this? Are there some other changes that you all were hoping to get in first?

This comment has been minimized.

Copy link
@ddabble

ddabble Oct 22, 2023

Author Member

As far as I'm aware, the responsibility for monitoring the need for that would naturally fall on the project leads (currently only @hramezani; see https://jazzband.co/projects/django-hosts). However, all members still have permission to create a release (not publish to PyPI, though).

So it would normally start with a member (including the project lead(s)) deciding to open a release PR, followed by creating a release after it's been reviewed by another member and merged.

Are there some other changes that you all were hoping to get in first?

Not that I'm aware of :)


5.2 (2023-01-12)
----------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ def read(*parts):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ envlist =
py{38,39,310}-dj32
py{38,39,310}-dj40
py{38,39,310,311}-dj41
py{310,311}-djmain
py{310,311,312}-djmain

[testenv]
usedevelop = true
Expand All @@ -27,3 +27,4 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

0 comments on commit 6b6d0a4

Please sign in to comment.