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
Noticed when looking at #9083 that we used an sqlalchemy feature in #8926 that is not supported in at least sqlalchemy
Concrete, it is about import sqlalchemy.sql.type_api as type_api (https://github.com/pydata/pandas/blob/v0.15.2/pandas/io/sql.py#L1162). I cannot import this 0.8.2 (and in any case, this should better be sqlalchemy.types.TypeEngine instead of type_api.TypeEngine)
import sqlalchemy.sql.type_api as type_api
sqlalchemy.types.TypeEngine
type_api.TypeEngine
We should check if we test older slqalchemy versions (0.8.x series, or even 0.7.x series?), or why this has not been caught by the tests.
The text was updated successfully, but these errors were encountered:
@datapythonista i know you've been looking at the dependencies in the CI. is this feasible?
Sorry, something went wrong.
I'll make a proposal soon for #29685, which should fix this sort of problems.
But this issue is 5 years old, I assume this is not a problem anymore. Closing.
No branches or pull requests
Noticed when looking at #9083 that we used an sqlalchemy feature in #8926 that is not supported in at least sqlalchemy
Concrete, it is about
import sqlalchemy.sql.type_api as type_api
(https://github.com/pydata/pandas/blob/v0.15.2/pandas/io/sql.py#L1162). I cannot import this 0.8.2 (and in any case, this should better besqlalchemy.types.TypeEngine
instead oftype_api.TypeEngine
)We should check if we test older slqalchemy versions (0.8.x series, or even 0.7.x series?), or why this has not been caught by the tests.
The text was updated successfully, but these errors were encountered: