Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3307,6 +3307,7 @@ class BeamModulePlugin implements Plugin<Project> {
':sdks:python:container:py310:docker',
':sdks:python:container:py311:docker',
':sdks:python:container:py312:docker',
':sdks:python:container:py313:docker',
]
doLast {
// TODO: Figure out GCS credentials and use real GCS input and output.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
REQUIREMENTS = [
"apache-beam[gcp]==2.41.0",
"hdbscan==0.8.28",
"scikit-learn==1.5.0",
"scikit-learn==1.7.1",
"transformers==4.36.0",
"torch==1.13.1",
"pandas==1.3.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# However, newer sklearn is needed for testing on newer Python version
scikit-learn==1.0.2; python_version < '3.11'
# bump sklearn version when new Python version is supported
scikit-learn==1.3.1; python_version >= '3.11'
scikit-learn==1.7.1; python_version >= '3.11'
2 changes: 1 addition & 1 deletion sdks/python/container/ml/py313/ml_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ oracledb==3.3.0
orjson==3.11.3
overrides==7.7.0
packaging==25.0
pandas==2.2.3
pandas==2.3.3
parameterized==0.9.0
pg8000==1.31.5
pillow==11.3.0
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/container/py313/base_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ oracledb==3.3.0
orjson==3.11.3
overrides==7.7.0
packaging==25.0
pandas==2.2.3
pandas==2.3.3
parameterized==0.9.0
pg8000==1.31.5
pip==25.2
Expand Down
2 changes: 2 additions & 0 deletions sdks/python/test-suites/tox/py313/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ applyPythonNature()
// Required to setup a Python 3 virtualenv and task names.
pythonVersion = '3.13'

project.tasks.register("postCommitPyDep") {}

apply from: "../common.gradle"

Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ This method requires building image artifacts from Beam source. For additional i
./gradlew :sdks:python:container:py310:docker
./gradlew :sdks:python:container:py311:docker
./gradlew :sdks:python:container:py312:docker
./gradlew :sdks:python:container:py313:docker

# Shortcut for building all Python SDKs
./gradlew :sdks:python:container:buildAll
Expand Down
Loading