Skip to content

Commit

Permalink
chore: support for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Aug 30, 2024
1 parent ab0c6bb commit 17a3fb5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.

[0.1.5] - Unreleased
====================

Added
*****

- Support for python 3.12

Changed
*******

- Use poetry-core build backend :pr:`9`

[0.1.4] - 2023-08-13
====================

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down Expand Up @@ -66,7 +67,7 @@ doctest_optionflags= "ALLOW_UNICODE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = doc,py38,py39,py310,py311,coverage
envlist = doc,py38,py39,py310,py311,py312,coverage
skipsdist=true
[testenv]
Expand Down

0 comments on commit 17a3fb5

Please sign in to comment.