Skip to content

Commit

Permalink
use python 3.10 for docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Jul 12, 2024
1 parent 5a8e0a7 commit e78ec93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"]
UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

# Error if a python version is missing
nox.options.error_on_missing_interpreters = True


@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
def unit(session):
Expand Down Expand Up @@ -61,7 +64,7 @@ def unit(session):
)


@nox.session(python="3.9")
@nox.session(python="3.10")
def docs(session):
"""Build the docs for this library."""

Expand Down

0 comments on commit e78ec93

Please sign in to comment.