Skip to content

Commit 4af169d

Browse files
committed
Add support for Python 3.13 to noxfile.py
1 parent bd74cb4 commit 4af169d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
pyperclip
13
Sphinx>=8.1.0
24
sphinx-autobuild>=2024.10.3
35
sphinx-rtd-theme>=3.0.1
6+
wcwidth

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nox
22

33

4-
@nox.session(python=['3.12'])
4+
@nox.session(python=['3.13'])
55
def docs(session):
66
session.install(
77
'sphinx',
@@ -17,7 +17,7 @@ def docs(session):
1717
)
1818

1919

20-
@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12'])
20+
@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'])
2121
@nox.parametrize('plugin', [None, 'ext_test', 'template', 'coverage'])
2222
def tests(session, plugin):
2323
if plugin is None:
@@ -41,7 +41,7 @@ def tests(session, plugin):
4141
)
4242

4343

44-
@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12'])
44+
@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'])
4545
@nox.parametrize('step', ['mypy', 'flake8'])
4646
def validate(session, step):
4747
session.install('invoke', './[validate]')

0 commit comments

Comments
 (0)