ROOT now uses llvm/clang version 13 (updated from version 9) Clean up specfile by removing EPEL 7 conditionals Drop dataframe, roofit and tmva-sofieparser on EPEL 8 ppc64le due to "pure virtual method called" errors Split the root-geom sub-package into three separate sub-packages: root-geom, root-geom-builder and root-geom-painter Enable uring support in EPEL 9 (liburing now available) New sub-packages: root-geom-webviewer, root-roofit-jsoninterface, root-testsupport, root-tree-ntuple-utils, root-tree-webviewer, root-xroofit Dropped patches: 31 New patches: 17 Updated patches: 4
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
From 8624d1c7eb4f532d6843118251d9564650f89924 Mon Sep 17 00:00:00 2001
|
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
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
|
|
|