- 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:
parent
f07c0fc060
commit
e5e4a0f87d
@ -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
|
- Fixed a bug when the version of MKL was not found. The
|
||||||
"version" field is now set to None in that case.
|
"version" field is now set to None in that case.
|
||||||
https://github.com/joblib/threadpoolctl/pull/82
|
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>
|
Fri Jul 24 11:21:21 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||||
|
@ -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",
|
|
Loading…
Reference in New Issue
Block a user