Skip to content

Commit fcde18f

Browse files
hugovksybrenstuvel
authored andcommitted
Add support for Python 3.12
1 parent 7991b2b commit fcde18f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ jobs:
1818
- "pypy3.9"
1919
- "3.10"
2020
- "3.11"
21+
- "3.12"
2122

2223
steps:
2324
- uses: actions/checkout@v3
2425
- name: Set up Python ${{ matrix.python-version }}
2526
uses: actions/setup-python@v4
2627
with:
2728
python-version: ${{ matrix.python-version }}
29+
allow-prereleases: true
2830
- name: Install dependencies
2931
run: |
3032
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.9",
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
2425
"Programming Language :: Python :: Implementation :: CPython",
2526
"Programming Language :: Python :: Implementation :: PyPy",
2627
"Topic :: Security :: Cryptography",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# Environment changes have to be manually synced with '.travis.yml'.
3-
envlist = py37,py38,py39,py310,py311
3+
envlist = py{37,38,39,310,311,312}
44
isolated_build = True
55

66
[pytest]

0 commit comments

Comments
 (0)