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 9, 2024
1 parent 374515a commit d43c763
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 @@ -25,6 +25,9 @@
DEFAULT_PYTHON_VERSION = "3.8"
CURRENT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))

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


@nox.session(python="3.10")
def lint(session):
Expand Down Expand Up @@ -119,7 +122,7 @@ def cover(session):
session.run("coverage", "erase")


@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 d43c763

Please sign in to comment.