Fix #3012 - Dependency breaking Airflow Container (#3015)

Fix #3012 - Dependency breaking Airflow Container
This commit is contained in:
Pere Miquel Brull 2022-02-28 17:11:18 +01:00 committed by GitHub
parent 97245a5b9f
commit 00552f6d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ base_requirements = {
"email-validator>=1.0.3", "email-validator>=1.0.3",
"wheel~=0.36.2", "wheel~=0.36.2",
"python-jose==3.3.0", "python-jose==3.3.0",
"sqlalchemy>=1.3.24", "sqlalchemy>=1.4.0",
"sql-metadata~=2.0.0", "sql-metadata~=2.0.0",
"requests~=2.26", "requests~=2.26",
"cryptography", "cryptography",
@ -63,6 +63,11 @@ base_plugins = {
"sql-metadata~=2.0.0", "sql-metadata~=2.0.0",
} }
plugins: Dict[str, Set[str]] = { plugins: Dict[str, Set[str]] = {
"airflow-container": {
"marshmallow-sqlalchemy>=0.26.0",
"SQLAlchemy-Utils>=0.38.0",
"pymysql>=1.0.2",
},
"amundsen": {"neo4j~=4.4.0"}, "amundsen": {"neo4j~=4.4.0"},
"athena": {"PyAthena[SQLAlchemy]"}, "athena": {"PyAthena[SQLAlchemy]"},
"azuresql": {"pyodbc"}, "azuresql": {"pyodbc"},