Skip to content

Commit 6502a0e

Browse files
authored
Add support for Python 3.13 (#1363)
1 parent 6526249 commit 6502a0e

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- {VERSION: "3.10", TOXENV: "py310"}
1717
- {VERSION: "3.11", TOXENV: "py311"}
1818
- {VERSION: "3.12", TOXENV: "py312"}
19+
- {VERSION: "3.13-dev", TOXENV: "py313"}
1920
- {VERSION: "pypy-3.9", TOXENV: "pypy3"}
2021
- {VERSION: "pypy-3.10", TOXENV: "pypy3"}
2122
- {VERSION: "3.11", TOXENV: "py311-useWheel", OS: "windows-2022" }
@@ -26,6 +27,7 @@ jobs:
2627
- {VERSION: "3.10", TOXENV: "py310-cryptographyMain"}
2728
- {VERSION: "3.11", TOXENV: "py311-cryptographyMain"}
2829
- {VERSION: "3.12", TOXENV: "py312-cryptographyMain"}
30+
- {VERSION: "3.13-dev", TOXENV: "py313-cryptographyMain"}
2931
- {VERSION: "pypy-3.9", TOXENV: "pypy3-cryptographyMain"}
3032
- {VERSION: "pypy-3.10", TOXENV: "pypy3-cryptographyMain"}
3133
# -cryptographyMinimum
@@ -35,6 +37,7 @@ jobs:
3537
- {VERSION: "3.10", TOXENV: "py310-cryptographyMinimum"}
3638
- {VERSION: "3.11", TOXENV: "py311-cryptographyMinimum"}
3739
- {VERSION: "3.12", TOXENV: "py312-cryptographyMinimum"}
40+
- {VERSION: "3.13-dev", TOXENV: "py313-cryptographyMinimum"}
3841
- {VERSION: "pypy-3.10", TOXENV: "pypy3-cryptographyMinimum"}
3942
# Cryptography wheels
4043
- {VERSION: "3.9", TOXENV: "py39-cryptographyMinimum-useWheel"}

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def find_meta(meta):
8383
"Programming Language :: Python :: 3.10",
8484
"Programming Language :: Python :: 3.11",
8585
"Programming Language :: Python :: 3.12",
86+
"Programming Language :: Python :: 3.13",
8687
"Programming Language :: Python :: Implementation :: CPython",
8788
"Programming Language :: Python :: Implementation :: PyPy",
8889
"Topic :: Security :: Cryptography",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{py3,37,38,39,310,311,312}{,-cryptographyMinimum}{,-useWheel}{,-randomorder},py311-twistedTrunk,check-manifest,lint,py311-mypy,docs,coverage-report
2+
envlist = py{py3,37,38,39,310,311,312,313}{,-cryptographyMinimum}{,-useWheel}{,-randomorder},py311-twistedTrunk,check-manifest,lint,py311-mypy,docs,coverage-report
33

44
[testenv]
55
allowlist_externals =

0 commit comments

Comments
 (0)