diff --git a/tutorials/CMakeLists.txt b/tutorials/CMakeLists.txt index 379292be0a3ca0f54890aed9e03a36960cfa0419..b0debfe3e6e96f00c2784fa9db1542f8cebe468d 100644 --- a/tutorials/CMakeLists.txt +++ b/tutorials/CMakeLists.txt @@ -583,7 +583,12 @@ if(ROOT_pyroot_FOUND) list(APPEND pyveto pyroot/pyroot004_NumbaDeclare.py) endif() - # Rules specific to distributed RDataFrame with Pyspark + if((dataframe AND DEFINED ENV{ROOTTEST_IGNORE_PANDAS_PY2} AND PYTHON_VERSION_MAJOR_Development_Main EQUAL 2) OR + (dataframe AND DEFINED ENV{ROOTTEST_IGNORE_PANDAS_PY3} AND PYTHON_VERSION_MAJOR_Development_Main EQUAL 3)) + list(APPEND pyveto dataframe/df026_AsNumpyArrays.py) + endif() + + # Rules specific to distributed RDataFrame with Pyspark # Disable distributed RDF tutorials if we didn't check dependencies in the environment first if(NOT test_distrdf_pyspark) list(APPEND pyveto dataframe/distrdf*)