- drop python_executable.patch (upstream)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-threadpoolctl?expand=0&rev=6
This commit is contained in:
Dirk Mueller 2021-07-19 06:29:44 +00:00 committed by Git OBS Bridge
parent f07c0fc060
commit e5e4a0f87d
2 changed files with 1 additions and 30 deletions

View File

@ -8,6 +8,7 @@ Mon Jul 19 06:27:59 UTC 2021 - Dirk Müller <dmueller@suse.com>
- Fixed a bug when the version of MKL was not found. The
"version" field is now set to None in that case.
https://github.com/joblib/threadpoolctl/pull/82
- drop python_executable.patch (upstream)
-------------------------------------------------------------------
Fri Jul 24 11:21:21 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>

View File

@ -1,30 +0,0 @@
Index: threadpoolctl-2.1.0/tests/test_threadpoolctl.py
===================================================================
--- threadpoolctl-2.1.0.orig/tests/test_threadpoolctl.py
+++ threadpoolctl-2.1.0/tests/test_threadpoolctl.py
@@ -396,14 +396,14 @@ def test_libomp_libiomp_warning(recwarn)
def test_command_line_empty():
output = subprocess.check_output(
- "python -m threadpoolctl".split())
+ (sys.executable + " -m threadpoolctl").split())
assert json.loads(output.decode("utf-8")) == []
def test_command_line_command_flag():
pytest.importorskip("numpy")
output = subprocess.check_output(
- ["python", "-m", "threadpoolctl", "-c", "import numpy"])
+ [sys.executable, "-m", "threadpoolctl", "-c", "import numpy"])
cli_info = json.loads(output.decode("utf-8"))
this_process_info = threadpool_info()
@@ -415,7 +415,7 @@ def test_command_line_command_flag():
reason="need recent subprocess.run options")
def test_command_line_import_flag():
result = subprocess.run([
- "python", "-m", "threadpoolctl", "-i",
+ sys.executable, "-m", "threadpoolctl", "-i",
"numpy",
"scipy.linalg",
"invalid_package",