You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Local config: in
https://github.com/pandas-dev/pandas-release/blob/master/Makefile#L28 I use
a relative path for the python binary, and was confused why this test was
failing. That test found a different python on my PATH, which had 0.23.0
installed, so the test failed and I was very confused :)
pandas/pandas/tests/test_downstream.py
Line 60 in ab668b0
that assumes that first
python
on the PATH is the one running the tests, which it may not be (e.g. if doing./venv/bin/python
We should replace
python
with something likesys.executable
.The text was updated successfully, but these errors were encountered: