Skip to content

Commit

Permalink
Add support for Python 3.13 to noxfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tleonhardt committed Oct 23, 2024
1 parent bd74cb4 commit 4af169d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

pyperclip
Sphinx>=8.1.0
sphinx-autobuild>=2024.10.3
sphinx-rtd-theme>=3.0.1
wcwidth
6 changes: 3 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox


@nox.session(python=['3.12'])
@nox.session(python=['3.13'])
def docs(session):
session.install(
'sphinx',
Expand All @@ -17,7 +17,7 @@ def docs(session):
)


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


@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12'])
@nox.session(python=['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'])
@nox.parametrize('step', ['mypy', 'flake8'])
def validate(session, step):
session.install('invoke', './[validate]')
Expand Down

0 comments on commit 4af169d

Please sign in to comment.