⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
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
4 changes: 2 additions & 2 deletions bigquery/bqml/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
google-cloud-bigquery[pandas,bqstorage]==3.27.0
google-cloud-bigquery-storage==2.27.0
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +3 to +4
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.8 and greater. This will cause installation failures on Python versions older than 3.11. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pyarrow==17.0.0; python_version <= '3.8'
pyarrow==20.0.0; python_version > '3.9'
flaky==3.8.1
Expand Down
4 changes: 2 additions & 2 deletions bigquery/pandas-gbq-migration/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
google-cloud-bigquery==3.27.0
google-cloud-bigquery-storage==2.27.0
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +3 to +4
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.8 and greater. This will cause installation failures on Python versions older than 3.11. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pandas-gbq==0.24.0
grpcio==1.70.0; python_version == '3.8'
grpcio==1.74.0; python_version > '3.8'
Expand Down
2 changes: 1 addition & 1 deletion bigquery_storage/to_dataframe/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ipython==9.4.0; python_version >= '3.11'
ipywidgets==8.1.7
pandas===1.3.5; python_version == '3.7'
pandas===2.0.3; python_version == '3.8'
pandas==2.3.1; 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

Pandas 3.0.0 requires Python 3.11 or higher, but this line attempts to install it for Python 3.9 and greater. This will cause installation failures on Python 3.9 and 3.10. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==2.3.1; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

tqdm==4.67.1
db-dtypes===1.4.2; python_version <= '3.8'
db-dtypes==1.4.3; python_version >= '3.9'
6 changes: 3 additions & 3 deletions generative_ai/embeddings/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.84.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/evaluation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/extensions/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/image_generation/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/model_garden/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/model_tuning/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/prompts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.74.0
Expand Down
6 changes: 3 additions & 3 deletions generative_ai/reasoning_engine/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas==2.2.3; python_version == '3.7'
pandas==2.2.3; python_version == '3.8'
pandas==2.2.3; python_version > '3.8'
pandas==3.0.0; python_version == '3.7'
pandas==3.0.0; python_version == '3.8'
pandas==3.0.0; python_version > '3.8'
Comment on lines +1 to +3
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher, but these lines attempt to install it for Python 3.7 and greater. This will cause installation failures on Python versions older than 3.11. Additionally, the previous version pandas==2.2.3 was incompatible with Python 3.7 and 3.8. The version constraints should be updated to use compatible pandas versions for each Python version.

pandas==1.3.5; python_version == '3.7'
pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
earthengine-api==1.5.9
folium==0.19.5
google-cloud-aiplatform==1.47.0
pandas==2.2.3
pandas==3.0.0
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher. This project supports Python versions older than 3.11 (based on the tensorflow==2.12.0 dependency), so pinning pandas to 3.0.0 without Python version constraints will cause installation failures. The dependency should be specified with Python version markers to ensure compatibility. The previous version pandas==2.2.3 was also incompatible with Python 3.8.

pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

tensorflow==2.12.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ Flask==3.0.3
apache-beam[gcp]==2.46.0
google-cloud-aiplatform==1.47.0
gunicorn==23.0.0
pandas==2.2.3
pandas==3.0.0
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

Pandas 3.0.0 requires Python 3.11 or higher. This project supports Python versions older than 3.11 (based on the tensorflow==2.12.1 dependency), so pinning pandas to 3.0.0 without Python version constraints will cause installation failures. The dependency should be specified with Python version markers to ensure compatibility. The previous version pandas==2.2.3 was also incompatible with Python 3.8.

pandas==2.0.3; python_version == '3.8'
pandas==2.2.3; python_version >= '3.9' and python_version < '3.11'
pandas==3.0.0; python_version >= '3.11'

tensorflow==2.12.1
Werkzeug==3.0.3