Skip to content

Commit

Permalink
fix(ingest): add releases link (#9014)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Oct 24, 2023
1 parent adf8c8d commit c849246
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@
# Source plugins
# sqlalchemy-bigquery is included here since it provides an implementation of
# a SQLalchemy-conform STRUCT type definition
"athena": sql_common | {"PyAthena[SQLAlchemy]>=2.6.0,<3.0.0", "sqlalchemy-bigquery>=1.4.1"},
"athena": sql_common
| {"PyAthena[SQLAlchemy]>=2.6.0,<3.0.0", "sqlalchemy-bigquery>=1.4.1"},
"azure-ad": set(),
"bigquery": sql_common
| bigquery_common
Expand Down Expand Up @@ -354,7 +355,11 @@
| {"psycopg2-binary", "pymysql>=1.0.2"},
"pulsar": {"requests"},
"redash": {"redash-toolbelt", "sql-metadata"} | sqllineage_lib,
"redshift": sql_common | redshift_common | usage_common | sqlglot_lib | {"redshift-connector"},
"redshift": sql_common
| redshift_common
| usage_common
| sqlglot_lib
| {"redshift-connector"},
"redshift-legacy": sql_common | redshift_common,
"redshift-usage-legacy": sql_common | usage_common | redshift_common,
"s3": {*s3_base, *data_lake_profiling},
Expand Down Expand Up @@ -435,7 +440,9 @@
deepdiff_dep = "deepdiff"
test_api_requirements = {pytest_dep, deepdiff_dep, "PyYAML"}

debug_requirements = {"memray"}
debug_requirements = {
"memray",
}

base_dev_requirements = {
*base_requirements,
Expand Down Expand Up @@ -668,6 +675,7 @@
"Documentation": "https://datahubproject.io/docs/",
"Source": "https://github.com/datahub-project/datahub",
"Changelog": "https://github.com/datahub-project/datahub/releases",
"Releases": "https://github.com/acryldata/datahub/releases",
},
license="Apache License 2.0",
description="A CLI to work with DataHub metadata",
Expand Down

0 comments on commit c849246

Please sign in to comment.