Skip to content

Commit

Permalink
Merge pull request #103 from tarsil/feature/python_312
Browse files Browse the repository at this point in the history
Enable Python 3.12 support
  • Loading branch information
tarsil authored Oct 13, 2023
2 parents 7e5e27a + 2f9a9ff commit 43178b0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

services:

Expand Down
10 changes: 10 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release Notes

## 1.0.0

### Added

- Support for Python 3.12

### Changed

- Update base requirements.

## 0.18.0

### Added
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
Expand Down
2 changes: 1 addition & 1 deletion saffier/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.18.0"
__version__ = "1.0.0"

from saffier.conf import settings
from saffier.conf.global_settings import SaffierSettings
Expand Down

0 comments on commit 43178b0

Please sign in to comment.