Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Commit 5d347ab

Browse files
committed
use py3.10 for docs generation
1 parent 4b34234 commit 5d347ab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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@v5
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@v5
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
MYPY_VERSION = "mypy==1.10.0"
3636

37-
DEFAULT_PYTHON_VERSION = "3.13"
37+
DEFAULT_PYTHON_VERSION = "3.10"
3838

3939
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
4040
"3.7",
@@ -432,7 +432,7 @@ def docfx(session):
432432
)
433433

434434

435-
@nox.session(python=DEFAULT_PYTHON_VERSION)
435+
@nox.session(python="3.13")
436436
@nox.parametrize(
437437
"protobuf_implementation",
438438
["python", "upb", "cpp"],

0 commit comments

Comments
 (0)