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
When exporting from Python with (the recently released) Pandas 1.5.0 installed a FutureWarning is emitted:
FutureWarning
/path/to/spotfire-python/spotfire/sbdf.py:220: FutureWarning: iteritems is deprecated and will be removed in a future version. Use .items instead. column_types = {str(k): _ValueTypeId.infer_from_dtype(v, f"column '{str(k)}'") for (k, v) in obj.iteritems()}
Fix the implementation of export to not emit warnings in the normal course of business.
For reference, the Pandas change at issue was pandas-dev/pandas#45321.
The text was updated successfully, but these errors were encountered:
When exporting data, use a method that is not deprecated by Pandas 1.…
d5b5550
…5.0. (#28)
092b744
bbassett-tibco
No branches or pull requests
When exporting from Python with (the recently released) Pandas 1.5.0 installed a
FutureWarning
is emitted:Fix the implementation of export to not emit warnings in the normal course of business.
For reference, the Pandas change at issue was pandas-dev/pandas#45321.
The text was updated successfully, but these errors were encountered: