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
2 changes: 1 addition & 1 deletion generative_ai/embeddings/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.84.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.29.0
anthropic[vertex]==0.28.0
numpy<3
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/evaluation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/extensions/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/image_generation/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/model_garden/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/model_tuning/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/prompts/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.74.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down
2 changes: 1 addition & 1 deletion generative_ai/reasoning_engine/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pandas==2.2.3; python_version > '3.8'
pillow==10.4.0; python_version < '3.8'
pillow==10.4.0; python_version >= '3.8'
google-cloud-aiplatform[all]==1.69.0
sentencepiece==0.2.0
sentencepiece==0.2.1
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 updated sentencepiece version 0.2.1 drops support for Python versions older than 3.9, as stated in the release notes. This project appears to support Python 3.7 and 3.8 (based on other dependencies like pandas and pillow in this file), which will cause installation failures for those environments. To maintain compatibility with older Python versions while using the latest sentencepiece for supported versions, you should specify version constraints.

sentencepiece==0.2.0; python_version < '3.9'
sentencepiece==0.2.1; python_version >= '3.9'

google-auth==2.38.0
anthropic[vertex]==0.28.0
langchain-core==0.2.33
Expand Down