Revision 353ee6cd90b8e10ec132ce3d430319a7b29795f4 authored by Jonas Rembser on 17 April 2024, 17:24:06 UTC, committed by Jonas Rembser on 19 April 2024, 11:35:25 UTC
After commit a27e60a6d4f, it is not important anymore that only the
variables used by the expression are passed to RooFormula.

Removing the corresponding warnings helps to get rid of useless warnings
in the case where you want to try out variations of the formula that
omit certain terms, and in particular it helps in
`RooAbsData::reduce()`, where the formula is always passed all the
varaiables in the dataset, whether the reduction uses them or not.
1 parent 311b78e
Raw File
requirements.txt
# ROOT requirements for third-party Python packages

# PyROOT: Interoperability with numpy arrays
# TMVA: PyMVA interfaces
numpy>=1.4.1
scikit-learn
xgboost

# PyROOT: ROOT.Numba.Declare decorator
numba>=0.47.0 ; python_version < "3.11" # See https://github.com/numba/numba/issues/8304
numba>=0.57.0 ; python_version >= "3.11" and python_version < "3.12"
# Not yet released.
# numba>=0.59 ; python_version >= "3.12"
cffi>=1.9.1

# Notebooks: ROOT C++ kernel
notebook>=4.4.1
metakernel>=0.20.0

# Distributed RDataFrame
pyspark>=2.4 # Spark backend
dask>=2022.08.1 ; python_version >= "3.8" # Dask backend
distributed>=2022.08.1 ; python_version >= "3.8" # Dask backend
back to top