File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff 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" )
355356def 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" )
390392def docfx (session ):
391393 """Build the docfx yaml files for this library."""
392394
You can’t perform that action at this time.
0 commit comments