summaryrefslogtreecommitdiff
path: root/dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-11-25 16:31:33 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-11-25 16:31:33 +0000
commit8cd3c41aa0ccead302235680b9e2fa9903d7548e (patch)
treeb6f2658c42bd34d0f1dc8b5f572aa5f5886c3d5d /dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch
parent2900e684ae4bdce1f20652587728095cd01a30a1 (diff)
gentoo auto-resync : 25:11:2023 - 16:31:33
Diffstat (limited to 'dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch')
-rw-r--r--dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch b/dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch
deleted file mode 100644
index 7a5ce5f52bdc..000000000000
--- a/dev-python/pyopencl/files/pyopencl-2023.1.2_numpy-include-dir.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/aksetup_helper.py
-+++ b/aksetup_helper.py
-@@ -43,11 +43,8 @@
-
-
- def get_numpy_incpath():
-- from imp import find_module
-- # avoid actually importing numpy, it screws up distutils
-- file, pathname, descr = find_module("numpy")
-- from os.path import join
-- return join(pathname, "core", "include")
-+ import numpy as np
-+ return np.get_include()
-
-
- class NumpyExtension(Extension):