-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: test_inference.py raises stack overflowerror #35218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@joooeey would you mind checking to see if you still have this issue (or if any other windows users can reproduce?) |
I'll have a look at it on the weekend. |
I'm not sure how to run the test suite. This is what I get: (base) C:\Users\Joey>git clone https://github.com/joooeey/pandas.git pandas-joooeey
Cloning into 'pandas-joooeey'...
remote: Enumerating objects: 280071, done.
remote: Counting objects: 100% (1032/1032), done.
remote: Compressing objects: 100% (584/584), done.
remote: Total 280071 (delta 675), reused 658 (delta 447), pack-reused 279039R
Receiving objects: 100% (280071/280071), 225.69 MiB | 6.77 MiB/s, done.
Resolving deltas: 100% (233868/233868), done.
Updating files: 100% (2319/2319), done.
(base) C:\Users\Joey>cd pandas-joooeey
(base) C:\Users\Joey\pandas-joooeey>pytest pandas
ImportError while loading conftest 'C:\Users\Joey\pandas-joooeey\pandas\conftest.py'.
pandas\__init__.py:22: in <module>
from pandas.compat import is_numpy_dev as _is_numpy_dev
pandas\compat\__init__.py:15: in <module>
from pandas.compat.numpy import (
pandas\compat\numpy\__init__.py:7: in <module>
from pandas.util.version import Version
pandas\util\__init__.py:1: in <module>
from pandas.util._decorators import ( # noqa
pandas\util\_decorators.py:14: in <module>
from pandas._libs.properties import cache_readonly # noqa
pandas\_libs\__init__.py:13: in <module>
from pandas._libs.interval import Interval
E ModuleNotFoundError: No module named 'pandas._libs.interval' Is there anything else I need to do to run the tests? |
Looks like this issue hasn't had much activity where other windows user were able to replicate the same behavior. Closing, but happy to reopen if we get a reproducer. |
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
(optional) I have confirmed this bug exists on the master branch of pandas.
Note: Please read this guide detailing how to provide the necessary information for us to reproduce your bug.
Code Sample, a copy-pastable example
In Anaconda Prompt:
Problem description
pytest pandas
fails at 22% withWindows fatal exception: stack overflow
intest_inference.py
line 131. According to the test file, the offending code is expected to raise aRecursionError
.Curiously, the following test runs green:
pytest pandas/tests/dtypes/test_inference.py
Expected Output
When I run
pytest pandas
on the master branch (like I did), I expect the entire test suite to run green.Output of
pd.show_versions()
The text was updated successfully, but these errors were encountered: