Include SQLAlchemy in dependencies.

This commit is contained in:
Pablo Martin 2023-02-02 17:20:46 +01:00
parent 52fd24ae5e
commit ca1d3471b5
2 changed files with 4 additions and 2 deletions

View file

@ -6,4 +6,5 @@ httpretty==1.1.4
trino==0.321.0 trino==0.321.0
sshtunnel==0.4.0 sshtunnel==0.4.0
PyMySQL==1.0.2 PyMySQL==1.0.2
great_expectations==0.15.45 great_expectations==0.15.45
SQLAlchemy==1.4.46

View file

@ -30,6 +30,7 @@ setup(
"trino==0.321.0", "trino==0.321.0",
"sshtunnel==0.4.0", "sshtunnel==0.4.0",
"PyMySQL==1.0.2", "PyMySQL==1.0.2",
"great_expectations==0.15.45" "great_expectations==0.15.45",
"SQLAlchemy==1.4.46",
], ],
) )