-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
Souce compile errors #25
Comments
Looks like a Cython issue-- I posted about it earlier today on the cython-dev list. I'll investigate tomorrow and hopefully upload a fixed source package / push a new cythonized tseries.c |
I confirmed that this is a bug in Cython 0.14. I've raised the issue with the cython devs so hopefully they'll fix it. Should now be easy_install-able (and the git HEAD should work too). |
dan-nadler
pushed a commit
to dan-nadler/pandas
that referenced
this issue
Sep 23, 2019
…python-write-gives TS-225 Fixed a warning: don't log if the datetime already has a timezone
3 tasks
This was referenced Jan 3, 2023
This was referenced Jan 17, 2023
3 tasks
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Old bug opened on google code showed that workaround for the pypi install failures should be to download latest source and compile as such:
python setup.py build --compiler=mingw32
python setup.py install
tseries.c has two errors stopping compilation
pandas\lib\src\tseries.c: In function '__Pyx_c_absf':
pandas\lib\src\tseries.c:18906:25: error: #if with no expression
pandas\lib\src\tseries.c: In function '__Pyx_c_abs':
pandas\lib\src\tseries.c:19026:25: error: #if with no expression
pandas\lib\src\tseries.c: At top level:
should that be #ifdef?
The text was updated successfully, but these errors were encountered: