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
Aequitas version 1.0.0 requires SQLAlchemy 2 which is a huge change in Triage.
We need to update SQLAlchemy, Pandas, Numpy (which are now part of Aequitas requirements)
Main differences between SQLAlchemy 1.x and 2.x are mentioned here
db_url = URL( 'postgres', host=dbconfig['db']['host'], username=dbconfig['db']['user'], database=dbconfig['db']['dbname'], password=dbconfig['db']['password'], port=dbconfig['db']['port'] )
now is
db_url = URL.create( 'postgresql+psycopg2', host=dbconfig['db']['host'], username=dbconfig['db']['user'], database=dbconfig['db']['dbname'], password=dbconfig['db']['password'], port=dbconfig['db']['port'] )
engine.execute("create table incidents (col1 varchar)")
connection = engine.connect() connection.execute("create table incidents (col1 varchar)")
The text was updated successfully, but these errors were encountered:
silil
No branches or pull requests
Aequitas version 1.0.0 requires SQLAlchemy 2 which is a huge change in Triage.
We need to update SQLAlchemy, Pandas, Numpy (which are now part of Aequitas requirements)
Main differences between SQLAlchemy 1.x and 2.x are mentioned here
now is
now is
The text was updated successfully, but these errors were encountered: