Skip to content

Commit 17a3fb5

Browse files
committed
chore: support for python 3.12
1 parent ab0c6bb commit 17a3fb5

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: ["3.8", "3.9", "3.10", "3.11"]
16+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

CHANGES.rst

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
33
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
44
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
55

6+
[0.1.5] - Unreleased
7+
====================
8+
9+
Added
10+
*****
11+
12+
- Support for python 3.12
13+
14+
Changed
15+
*******
16+
17+
- Use poetry-core build backend :pr:`9`
18+
619
[0.1.4] - 2023-08-13
720
====================
821

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Programming Language :: Python :: 3.9",
1616
"Programming Language :: Python :: 3.10",
1717
"Programming Language :: Python :: 3.11",
18+
"Programming Language :: Python :: 3.12",
1819
"Programming Language :: Python :: Implementation :: CPython",
1920
"License :: OSI Approved :: MIT License",
2021
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -66,7 +67,7 @@ doctest_optionflags= "ALLOW_UNICODE IGNORE_EXCEPTION_DETAIL ELLIPSIS"
6667
legacy_tox_ini = """
6768
[tox]
6869
isolated_build = true
69-
envlist = doc,py38,py39,py310,py311,coverage
70+
envlist = doc,py38,py39,py310,py311,py312,coverage
7071
skipsdist=true
7172
7273
[testenv]

0 commit comments

Comments
 (0)