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 @@ -54,7 +54,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 @@ -83,7 +83,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 All @@ -110,7 +110,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 @@ -139,7 +139,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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
google-auth==2.47.0
google-auth==2.48.0
google-cloud-bigquery-storage==2.36.0
google-cloud-bigquery===3.30.0; python_version <= '3.8'
google-cloud-bigquery==3.40.0; python_version >= '3.9'
Expand All @@ -13,7 +13,7 @@ ipython==9.9.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.0; 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

According to the pandas 3.0.0 release notes, this version only supports Python 3.11 and higher. The current version specifier python_version >= '3.9' is incorrect and will cause installation failures for projects using Python 3.9 or 3.10.

To fix this, the Python version marker should be updated to >= '3.11'. You may also need to add back a requirement for a pandas 2.x version for Python 3.9 and 3.10 to maintain support for those versions.

pandas==3.0.0; python_version >= '3.11'

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