Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.14"
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.14"
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.14"
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
python-version: "3.14"
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
Expand Down
12 changes: 6 additions & 6 deletions packages/google-auth/docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ requests-oauthlib
# which still support sphinx 4.x.
# See https://github.com/googleapis/sphinx-docfx-yaml/issues/344
# and https://github.com/googleapis/sphinx-docfx-yaml/issues/345.
sphinxcontrib-applehelp==1.0.4
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
sphinx==4.5.0
sphinxcontrib-applehelp==2.0.0
sphinxcontrib-devhelp==2.0.0
sphinxcontrib-htmlhelp==2.1.0
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
sphinx==9.1.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

sphinx version 9.1.0 requires Python 3.12+. Support for Python 3.10 was dropped in v8.2.0 and for 3.11 in v9.1.0. This update will break the documentation build if it runs on an older Python version. Please ensure the build environment uses a compatible Python version (3.12+).

alabaster
recommonmark
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-auth==2.48.0
google-auth==2.49.0
google-cloud-bigquery-storage==2.36.2
google-cloud-bigquery===3.30.0; python_version <= '3.8'
google-cloud-bigquery==3.40.1; python_version >= '3.9'
Expand All @@ -9,11 +9,11 @@ ipython===7.31.1; python_version == '3.7'
ipython===8.10.0; python_version == '3.8'
ipython===8.18.1; python_version == '3.9'
ipython===8.33.0; python_version == '3.10'
ipython==9.10.0; python_version >= '3.11'
ipython==9.11.0; python_version >= '3.11'
ipywidgets==8.1.8
pandas===1.3.5; python_version == '3.7'
pandas===2.0.3; python_version == '3.8'
pandas==2.3.3; python_version >= '3.9'
pandas==3.0.1; python_version >= '3.9'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The pandas 3.0 release series requires Python 3.11 or higher. The version marker python_version >= '3.9' is incorrect and will cause installation to fail on Python 3.9 and 3.10. Please update the version marker. Note that this will leave Python 3.9 and 3.10 without a specified pandas version from this line; you may need to add a separate line to cover those versions with a compatible pandas version.

pandas==3.0.1; python_version >= '3.11'

tqdm==4.67.3
db-dtypes===1.4.2; python_version <= '3.8'
db-dtypes==1.5.0; python_version >= '3.9'