Skip to content

Commit

Permalink
Fix PostCommit Python sklearn on Python3.12 (#32171)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Aug 14, 2024
1 parent 3063b55 commit 7af43ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/trigger_files/beam_PostCommit_Python.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"comment": "Modify this file in a trivial way to cause this test suite to run."
"comment": "Modify this file in a trivial way to cause this test suite to run.",
"modification": 1
}

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
#

# This should match the saved version of your trained model.
# Beam's tests use sklearn 1.0.2 for their saved models.
# Beam's tests use saved models with sklearn 1.0.2, which supports py3.7-3.10
# However, newer sklearn is needed for testing on newer Python version
scikit-learn==1.0.2; python_version < '3.11'
# https://github.com/apache/beam/issues/27151 sklearn support Py311 in 1.2
scikit-learn==1.2.2; python_version >= '3.11'
# bump sklearn version when new Python version is supported
scikit-learn==1.3.1; python_version >= '3.11'

0 comments on commit 7af43ee

Please sign in to comment.