summaryrefslogtreecommitdiff
path: root/dev-python/tables/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-06 07:16:05 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-06 07:16:05 +0000
commitd460b89304bcd03f839efc77b08a2d1b899bddd2 (patch)
tree57880cbdcc30d2314d637626aa2ad61b655cd89f /dev-python/tables/files
parentafb5832780c297900c8f0532c7781a381d28740f (diff)
downloadbaldeagleos-repo-d460b89304bcd03f839efc77b08a2d1b899bddd2.tar.gz
baldeagleos-repo-d460b89304bcd03f839efc77b08a2d1b899bddd2.tar.xz
baldeagleos-repo-d460b89304bcd03f839efc77b08a2d1b899bddd2.zip
Adding metadata
Diffstat (limited to 'dev-python/tables/files')
-rw-r--r--dev-python/tables/files/tables-3.10.2-numexpr-2.13.0.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/tables/files/tables-3.10.2-numexpr-2.13.0.patch b/dev-python/tables/files/tables-3.10.2-numexpr-2.13.0.patch
new file mode 100644
index 000000000000..87a9ccdaa02f
--- /dev/null
+++ b/dev-python/tables/files/tables-3.10.2-numexpr-2.13.0.patch
@@ -0,0 +1,26 @@
+https://github.com/PyTables/PyTables/commit/41270019ce1ffd97ce8f23b21d635e00e12b0ccb
+
+From 41270019ce1ffd97ce8f23b21d635e00e12b0ccb Mon Sep 17 00:00:00 2001
+From: Francesc Alted <francesc@blosc.org>
+Date: Thu, 25 Sep 2025 13:14:57 +0200
+Subject: [PATCH] Fix for numexpr 2.13.0 (should be backward compatible)
+
+---
+ tables/tests/test_queries.py | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/tables/tests/test_queries.py b/tables/tests/test_queries.py
+index 704439047..d0ae85e28 100644
+--- a/tables/tests/test_queries.py
++++ b/tables/tests/test_queries.py
+@@ -485,9 +485,7 @@ def test_method(self):
+ for _ in range(2)
+ ]
+ except TypeError as te:
+- if self.condNotBoolean_re.search(str(te)):
+- raise SilentlySkipTest("The condition is not boolean.")
+- raise
++ raise SilentlySkipTest("The condition is not boolean.")
+ except NotImplementedError:
+ raise SilentlySkipTest(
+ "The PyTables type does not support the operation."