From 8624d1c7eb4f532d6843118251d9564650f89924 Mon Sep 17 00:00:00 2001 From: Mattias Ellert Date: Thu, 2 Mar 2023 08:25:36 +0100 Subject: [PATCH 1/2] Use consistent minimum Python version for DistRDF The minimum version was changed in bindings/CMakeLists.txt but not in the check in the code. --- bindings/pyroot/pythonizations/python/ROOT/_facade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/pyroot/pythonizations/python/ROOT/_facade.py b/bindings/pyroot/pythonizations/python/ROOT/_facade.py index 7370a234d1..865321e713 100644 --- a/bindings/pyroot/pythonizations/python/ROOT/_facade.py +++ b/bindings/pyroot/pythonizations/python/ROOT/_facade.py @@ -335,7 +335,7 @@ class ROOTFacade(types.ModuleType): ns.MakeNumpyDataFrame = DeprecatedMakeNumpy ns.FromNumpy = MakeNumpyDataFrame - if sys.version_info >= (3, 7): + if sys.version_info >= (3, 8): # Inject Experimental.Distributed package into namespace RDF ns.Experimental.Distributed = _create_rdf_experimental_distributed_module(ns.Experimental) except: -- 2.39.2