Skip to content

Commit d20f2de

Browse files
committed
pin py3.10 for docs/docsfx
1 parent f9579ef commit d20f2de

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.13"
15+
python-version: "3.10"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Python
2929
uses: actions/setup-python@v6
3030
with:
31-
python-version: "3.13"
31+
python-version: "3.10"
3232
- name: Install nox
3333
run: |
3434
python -m pip install --upgrade setuptools pip wheel

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ def cover(session):
351351
session.run("coverage", "erase")
352352

353353

354+
# py > 3.10 not supported yet
354355
@nox.session(python="3.10")
355356
def docs(session):
356357
"""Build the docs for this library."""
@@ -386,7 +387,8 @@ def docs(session):
386387
)
387388

388389

389-
@nox.session(python=DEFAULT_PYTHON_VERSION)
390+
# py > 3.10 not supported yet
391+
@nox.session(python="3.10")
390392
def docfx(session):
391393
"""Build the docfx yaml files for this library."""
392394

0 commit comments

Comments
 (0)