summaryrefslogtreecommitdiff
path: root/dev-python/numexpr/files
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-07-26 00:45:24 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-07-26 00:45:24 +0000
commitea620153298831be4130e6aa2ad9e0a18c767be1 (patch)
tree1c62992b6a753f30ef7bc278b304c7ab8aa6f3cc /dev-python/numexpr/files
parent7d6c77f2e1dac59f2fa2556e093d0818351ae618 (diff)
downloadbaldeagleos-repo-ea620153298831be4130e6aa2ad9e0a18c767be1.tar.gz
baldeagleos-repo-ea620153298831be4130e6aa2ad9e0a18c767be1.tar.xz
baldeagleos-repo-ea620153298831be4130e6aa2ad9e0a18c767be1.zip
Adding metadata
Diffstat (limited to 'dev-python/numexpr/files')
-rw-r--r--dev-python/numexpr/files/numexpr-2.8.1-numpy-1.23.0.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-python/numexpr/files/numexpr-2.8.1-numpy-1.23.0.patch b/dev-python/numexpr/files/numexpr-2.8.1-numpy-1.23.0.patch
deleted file mode 100644
index b0e841077620..000000000000
--- a/dev-python/numexpr/files/numexpr-2.8.1-numpy-1.23.0.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://github.com/pydata/numexpr/commit/1c6a024947c3aa1bf926ecb9828036b306d7c6d7
-https://bugs.gentoo.org/853955
-
-From 1c6a024947c3aa1bf926ecb9828036b306d7c6d7 Mon Sep 17 00:00:00 2001
-From: Robert McLeod <robbmcleod@gmail.com>
-Date: Mon, 24 Jan 2022 10:54:34 -0800
-Subject: [PATCH] Fix for #397, use of NPY_ARRAY_UPDATEIFCOPY flag
-
- Changes from 2.8.0 to 2.8.1
- ---------------------------
---- a/numexpr/interpreter.cpp
-+++ b/numexpr/interpreter.cpp
-@@ -1269,7 +1269,7 @@ NumExpr_run(NumExprObject *self, PyObject *args, PyObject *kwds)
- }
- Py_INCREF(dtypes[0]);
- a = (PyArrayObject *)PyArray_FromArray(operands[0], dtypes[0],
-- NPY_ARRAY_ALIGNED|NPY_ARRAY_UPDATEIFCOPY);
-+ NPY_ARRAY_ALIGNED);
- if (a == NULL) {
- goto fail;
- }
-