-
Notifications
You must be signed in to change notification settings - Fork 8
Upgrade to pandas 2 #22
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
Hi Stefan, I'm just looking at the requirements.txt and setup.py, and they both list pandas>=2.0.0 (the change was made in version 1.1.6 here on GitHub https://github.com/cadmiumkitty/rdfpandas/releases/tag/1.1.6 and here https://pypi.org/project/rdfpandas/). I am a little unsure what went on with the readthedocs in the meantime, as it seems to list 1.1.5 as the latest version available; I will need to look into it. What version of rdfpandas are you using? |
Hi, I am/was using version 1.1.5. Thanks for the hint with version 1.1.6. That lead me to the solution, to adapt the version specifier for python to Now, I fixed the version of rdfpandas to be >= 1.1.6 then this happened:
So it seems rdfpandas (I now got 1.1.16) upgraded to a newer version of rdflib, which in turn needs me to exclude python version 4. Now I can also get pandas 2. Numpy (which I used in the same project) had a similar problem, I had to set the minimum python version to >= 3.9. Since I use nothing older than 3.11 I set it to |
Hi,
could you upgrade the dependency to pandas to version >= 2.0.0?
The issue is that rdfpandas currently doesn't work with pandas >= 2.0.0. Since I have to use pandas < 2.0.0, I also have to use an older version of numpy < 1.26. Now, it is not possible to install numpy on python 3.12 because it doesn't PEP513 builds (see https://stackoverflow.com/questions/77582651/why-doesnt-numpy-support-pep517-builds). So I have to resort to python 3.11.
Long story short: please upgrade to pandas >= 2.0.0 so we can use rdfpandas with python 3.12 :)
The text was updated successfully, but these errors were encountered: