Skip to content

Commit 78ccf3f

Browse files
authored
adds testing for 3.12, fixes #290 (#300)
1 parent ac2baee commit 78ccf3f

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["pypy-3.8", "3.8", "3.9", "3.10", "3.11"]
9+
python-version: ["pypy-3.8", "3.8", "3.9", "3.10", "3.11", "3.12"]
1010
steps:
1111
- name: Check out repository
1212
uses: actions/checkout@v3

.gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tasks:
77
# Upgrade pyenv itself
88
pyenv update
99
10-
export PY_VERSIONS="3.8 3.9 3.10 3.11"
10+
export PY_VERSIONS="3.8 3.9 3.10 3.11 3.12"
1111
1212
# Install all supported Python versions
1313
for py in $PY_VERSIONS;

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2728
"Programming Language :: Python :: Implementation :: CPython",
2829
"Programming Language :: Python :: Implementation :: PyPy",
2930
"Typing :: Typed"

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,pep8,packaging,noextra,mypy
2+
envlist = py38,py39,py310,py311,py312,pep8,packaging,noextra,mypy
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)