Skip to content

[v634][CI] Disable PyMVA so we can support the newest TensorFlow versions #19159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 24, 2025
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
1 change: 0 additions & 1 deletion .github/workflows/root-ci-config/buildconfig/alma10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ builtin_vdt=ON
builtin_zlib=ON
builtin_zstd=ON
ccache=ON
mysql=OFF
tmva-sofie=ON
2 changes: 1 addition & 1 deletion .github/workflows/root-ci-config/buildconfig/global.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ testing=ON
tmva-cpu=ON
tmva-gpu=OFF
tmva-cudnn=OFF
tmva-pymva=ON
tmva-pymva=OFF
tmva-rmva=OFF
tmva-sofie=OFF
tmva=ON
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tmva=ON
tmva-cpu=ON
tmva-gpu=ON
tmva-cudnn=ON
tmva-pymva=ON
tmva-pymva=OFF
fortran=OFF
gdml=OFF
mysql=OFF
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ onnx
# TMVA: PyMVA interfaces
scikit-learn
tensorflow<2.16 ; python_version < "3.12"
tensorflow ; python_version < "3.13" # TensorFlow doesn't support Python 3.13 yet
torch<2.5 ; python_version < "3.13" # no torch version that fullfills version constraint available for Python 3.13
xgboost

Expand Down
Loading