Skip to content

Instantly share code, notes, and snippets.

View simonjayhawkins's full-sized avatar

Simon Hawkins simonjayhawkins

View GitHub Profile
@simonjayhawkins
simonjayhawkins / mod-test.patch
Last active October 26, 2020 19:25
Failing test_missing_required_dependency in pandas-wheels
diff --git a/pandas/tests/test_downstream.py b/pandas/tests/test_downstream.py
index c03e8e2695..7da9223a67 100644
--- a/pandas/tests/test_downstream.py
+++ b/pandas/tests/test_downstream.py
@@ -150,6 +150,12 @@ def test_missing_required_dependency():
# https://github.com/MacPython/pandas-wheels/pull/50
pyexe = sys.executable.replace("\\", "/")
+
+ call = [pyexe, "-c", "import pandas;print(pandas.__file__)"]