acryl-datahub 0.15.0.5rc4__py3-none-any.whl → 15.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of acryl-datahub might be problematic. Click here for more details.

Files changed (30) hide show
  1. {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/METADATA +2385 -2388
  2. {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/RECORD +28 -30
  3. datahub/__init__.py +25 -1
  4. datahub/cli/check_cli.py +1 -1
  5. datahub/cli/cli_utils.py +3 -3
  6. datahub/cli/ingest_cli.py +2 -2
  7. datahub/emitter/rest_emitter.py +1 -1
  8. datahub/entrypoints.py +5 -5
  9. datahub/ingestion/api/registry.py +2 -4
  10. datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +1 -1
  11. datahub/ingestion/run/connection.py +1 -1
  12. datahub/ingestion/run/pipeline.py +3 -3
  13. datahub/ingestion/source/aws/glue.py +5 -13
  14. datahub/ingestion/source/looker/lookml_config.py +1 -4
  15. datahub/ingestion/source/looker/lookml_source.py +0 -56
  16. datahub/ingestion/source/slack/slack.py +0 -6
  17. datahub/ingestion/source/snowflake/snowflake_schema_gen.py +7 -17
  18. datahub/ingestion/source/sql/clickhouse.py +43 -5
  19. datahub/ingestion/source/unity/proxy.py +2 -2
  20. datahub/metadata/_schema_classes.py +400 -400
  21. datahub/metadata/_urns/urn_defs.py +1665 -1665
  22. datahub/metadata/schema.avsc +15276 -15634
  23. datahub/telemetry/telemetry.py +4 -4
  24. datahub/testing/check_imports.py +0 -28
  25. datahub/upgrade/upgrade.py +4 -4
  26. acryl_datahub-0.15.0.5rc4.dist-info/LICENSE +0 -202
  27. datahub/_version.py +0 -13
  28. {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/WHEEL +0 -0
  29. {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/entry_points.txt +0 -0
  30. {acryl_datahub-0.15.0.5rc4.dist-info → acryl_datahub-15.0.4.dist-info}/top_level.txt +0 -0
@@ -26,7 +26,7 @@ from databricks.sdk.service.sql import (
26
26
  )
27
27
  from databricks.sdk.service.workspace import ObjectType
28
28
 
29
- from datahub._version import nice_version_name
29
+ import datahub
30
30
  from datahub.emitter.mce_builder import parse_ts_millis
31
31
  from datahub.ingestion.source.unity.hive_metastore_proxy import HiveMetastoreProxy
32
32
  from datahub.ingestion.source.unity.proxy_profiling import (
@@ -103,7 +103,7 @@ class UnityCatalogApiProxy(UnityCatalogProxyProfilingMixin):
103
103
  host=workspace_url,
104
104
  token=personal_access_token,
105
105
  product="datahub",
106
- product_version=nice_version_name(),
106
+ product_version=datahub.nice_version_name(),
107
107
  )
108
108
  self.warehouse_id = warehouse_id or ""
109
109
  self.report = report