We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, there is a deprecation warning in the authentication module (aa.py, row 5)
FutureWarning: pandas.io.json.json_normalize is deprecated, use pandas.json_normalize instead.
To fix this issue it is sufficient to replace: from pandas.io.json import json_normalize with: from pandas import json_normalize
from pandas.io.json import json_normalize
from pandas import json_normalize
The text was updated successfully, but these errors were encountered:
Hi, same problem here when I try to use the pynanomapper package.
i notices that is has been fixed in c96eccc, two months ago, that's nice to see!
But the pip package is still outdated, the latest version is from May 23, 2022.
Is it possible to update it?
Sorry, something went wrong.
FWIW, we have a lot of changes in the latest version and we'll need some time to properly test them before making a new release on PyPI.
kerberizer
No branches or pull requests
Hi, there is a deprecation warning in the authentication module (aa.py, row 5)
FutureWarning: pandas.io.json.json_normalize is deprecated, use pandas.json_normalize instead.
To fix this issue it is sufficient to replace:
from pandas.io.json import json_normalize
with:
from pandas import json_normalize
The text was updated successfully, but these errors were encountered: