-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BLD: pandas-wheels are failing #22021
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
@pandas-dev/pandas-core |
Will take a look today. |
Side-note, does anyone know why we use numpy 1.9 for the 3.6 builds as well? Should that be using NumPy 1.11? |
The issue seems to be In [1]: import numpy as np
In [2]: import warnings
In [3]: warnings.simplefilter("always", DeprecationWarning) Some things are fine, In [4]: np.dtype(('b', 'c'))
Out[4]: dtype('int8') others are not In [5]: np.dtype(('b1', 'b2'))
/Users/taugspurger/miniconda3/envs/pandas-debug/bin/ipython:1: DeprecationWarning: Specified size is invalid for this data type.
Size will be ignored in NumPy 1.7 but may throw an exception in future versions.
#!/Users/taugspurger/miniconda3/envs/pandas-debug/bin/python
Out[5]: dtype('bool') We could quickly work around this by just calling doing this inside a warnings filter, but it hints at a deeper problem: we shouldn't be passing data to This is coming through I'll spend some time today and tomorrow trying to clean this up. |
Removes is_extension_array_dtype's handling of both arrays and dtypes. Now it handles just arrays, and we provide `is_extension_dtype` for checking whether a dtype is an extension dtype. It's the caller's responsibility to know whether they have an array or dtype. Closes pandas-dev#22021
I'm no longer working on this, if someone else wants to. |
https://travis-ci.org/MacPython/pandas-wheels/builds/406975380
looks like #21879 somehow broke this. The error messages I think are red herrings for somehow picking up a wrong version of numpy when things are compiled.
The text was updated successfully, but these errors were encountered: