Skip to content

Commit 985d4d2

Browse files
committed
attempt to add support for python 3.13
1 parent 357580f commit 985d4d2

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v3

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.11"
6+
python: "3.13"
77
jobs:
88
post_install:
99
- pip install .[docs]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"Programming Language :: Python :: 3.10",
6262
"Programming Language :: Python :: 3.11",
6363
"Programming Language :: Python :: 3.12",
64+
"Programming Language :: Python :: 3.13",
6465
"Programming Language :: Python :: Implementation",
6566
"Programming Language :: Python :: Implementation :: CPython",
6667
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
envlist = py38, py39, py310, py311, py312, py313
2+
13
[testenv]
24
deps = -rdev-requirements.txt
35
commands = coverage run -m pytest {posargs}

0 commit comments

Comments
 (0)