summaryrefslogtreecommitdiff
path: root/dev-python/numpy/files
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-26 07:04:21 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-26 08:52:29 +0200
commita2a9c20493b902d3758b382e6eaf5ee23779cad1 (patch)
tree7467767f2e8b887a0fcd94e889c88a2a588494c4 /dev-python/numpy/files
parentd77ca45f5c25741699056421f5483a2dd08a4cc9 (diff)
downloadgentoo-a2a9c20493b902d3758b382e6eaf5ee23779cad1.tar.gz
gentoo-a2a9c20493b902d3758b382e6eaf5ee23779cad1.tar.bz2
gentoo-a2a9c20493b902d3758b382e6eaf5ee23779cad1.zip
dev-python/numpy: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/numpy/files')
-rw-r--r--dev-python/numpy/files/numpy-2.0.2-setuptools-74.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/numpy/files/numpy-2.0.2-setuptools-74.patch b/dev-python/numpy/files/numpy-2.0.2-setuptools-74.patch
deleted file mode 100644
index 7e61378bdecc..000000000000
--- a/dev-python/numpy/files/numpy-2.0.2-setuptools-74.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 1cc02cc6710384c52e1082a33d1617504eaed296 Mon Sep 17 00:00:00 2001
-From: Katie Rust <katie@ktpanda.org>
-Date: Mon, 16 Sep 2024 13:04:22 -0500
-Subject: [PATCH] BUG: Stub out `get_build_msvc_version` if
- `distutils.msvccompiler` cannot be imported (fixes #27405)
-
----
- numpy/distutils/mingw32ccompiler.py | 8 +++++++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py
-index 39905a784088..2599a9e9a807 100644
---- a/numpy/distutils/mingw32ccompiler.py
-+++ b/numpy/distutils/mingw32ccompiler.py
-@@ -24,7 +24,13 @@
-
- import distutils.cygwinccompiler
- from distutils.unixccompiler import UnixCCompiler
--from distutils.msvccompiler import get_build_version as get_build_msvc_version
-+
-+try:
-+ from distutils.msvccompiler import get_build_version as get_build_msvc_version
-+except ImportError:
-+ def get_build_msvc_version():
-+ return None
-+
- from distutils.errors import UnknownFileError
- from numpy.distutils.misc_util import (msvc_runtime_library,
- msvc_runtime_version,