apache-airflow-providers-dbt-cloud 4.4.1rc1__py3-none-any.whl → 4.4.2rc1__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 apache-airflow-providers-dbt-cloud might be problematic. Click here for more details.
- airflow/providers/dbt/cloud/__init__.py +1 -1
- airflow/providers/dbt/cloud/utils/openlineage.py +1 -1
- {apache_airflow_providers_dbt_cloud-4.4.1rc1.dist-info → apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info}/METADATA +10 -8
- {apache_airflow_providers_dbt_cloud-4.4.1rc1.dist-info → apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info}/RECORD +6 -6
- {apache_airflow_providers_dbt_cloud-4.4.1rc1.dist-info → apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_dbt_cloud-4.4.1rc1.dist-info → apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "4.4.
|
|
32
|
+
__version__ = "4.4.2"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -113,7 +113,7 @@ def generate_openlineage_events_from_dbt_cloud_run(
|
|
|
113
113
|
try:
|
|
114
114
|
log.debug("Retrieving information about catalog artifact from DBT.")
|
|
115
115
|
catalog = operator.hook.get_job_run_artifact(operator.run_id, path="catalog.json").json()["data"]
|
|
116
|
-
except Exception:
|
|
116
|
+
except Exception:
|
|
117
117
|
log.info(
|
|
118
118
|
"Openlineage could not find DBT catalog artifact, usually available when docs are generated."
|
|
119
119
|
"Proceeding with metadata extraction. "
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 4.4.
|
|
3
|
+
Version: 4.4.2rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-dbt-cloud for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,dbt.cloud,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Environment :: Console
|
|
@@ -18,6 +18,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Topic :: System :: Monitoring
|
|
22
23
|
Requires-Dist: apache-airflow>=2.10.0rc1
|
|
23
24
|
Requires-Dist: apache-airflow-providers-common-compat>=1.6.0rc1
|
|
@@ -26,8 +27,8 @@ Requires-Dist: asgiref>=2.3.0
|
|
|
26
27
|
Requires-Dist: aiohttp>=3.9.2
|
|
27
28
|
Requires-Dist: apache-airflow-providers-openlineage>=2.3.0rc1 ; extra == "openlineage"
|
|
28
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
29
|
-
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
30
|
-
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
30
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.2/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.2
|
|
31
32
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
32
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
33
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -59,8 +60,9 @@ Provides-Extra: openlineage
|
|
|
59
60
|
|
|
60
61
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
61
62
|
|
|
62
|
-
Release: ``4.4.
|
|
63
|
+
Release: ``4.4.2``
|
|
63
64
|
|
|
65
|
+
Release Date: ``|PypiReleaseDate|``
|
|
64
66
|
|
|
65
67
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
66
68
|
|
|
@@ -72,7 +74,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
72
74
|
are in ``airflow.providers.dbt.cloud`` python package.
|
|
73
75
|
|
|
74
76
|
You can find package information and changelog for the provider
|
|
75
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
77
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.2/>`_.
|
|
76
78
|
|
|
77
79
|
Installation
|
|
78
80
|
------------
|
|
@@ -81,7 +83,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
|
81
83
|
for the minimum Airflow version supported) via
|
|
82
84
|
``pip install apache-airflow-providers-dbt-cloud``
|
|
83
85
|
|
|
84
|
-
The package supports the following python versions: 3.10,3.11,3.12
|
|
86
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
85
87
|
|
|
86
88
|
Requirements
|
|
87
89
|
------------
|
|
@@ -118,5 +120,5 @@ Dependent package
|
|
|
118
120
|
================================================================================================================== =================
|
|
119
121
|
|
|
120
122
|
The changelog for the provider package can be found in the
|
|
121
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.
|
|
123
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.4.2/changelog.html>`_.
|
|
122
124
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
airflow/providers/dbt/cloud/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/dbt/cloud/__init__.py,sha256=
|
|
2
|
+
airflow/providers/dbt/cloud/__init__.py,sha256=9bEsRWxLXRbKeXcUQ4TEaN3YkebHwWMRxSm2T58Mxn8,1498
|
|
3
3
|
airflow/providers/dbt/cloud/get_provider_info.py,sha256=ufODYanp90_NPW1UftzGIwwG65Olb5l5PfSp0Mo1SOs,2507
|
|
4
4
|
airflow/providers/dbt/cloud/version_compat.py,sha256=xlj-5p7JK_pkXUjSEuNRRq9GxBOmhA0AayCPlMh_XiM,2044
|
|
5
5
|
airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
@@ -11,8 +11,8 @@ airflow/providers/dbt/cloud/sensors/dbt.py,sha256=x3F077-nTjxOEfQlgDuICIRJTQMnmc
|
|
|
11
11
|
airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
12
12
|
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=Oabdc7FcNhCQxkjDC5SqAiYEw4hSZ9mQGZgSt36a1E0,4707
|
|
13
13
|
airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
14
|
-
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=
|
|
15
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
16
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
17
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
18
|
-
apache_airflow_providers_dbt_cloud-4.4.
|
|
14
|
+
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=uUgIF6GyVMLY2G1g6TP3ai2C22avap5nESDJ5TeJMFw,8042
|
|
15
|
+
apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
|
|
16
|
+
apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
17
|
+
apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info/METADATA,sha256=SX2G3xPqqTG5C_A0aILBQzTOWEP7y3lXZtMGktrcCCE,5825
|
|
18
|
+
apache_airflow_providers_dbt_cloud-4.4.2rc1.dist-info/RECORD,,
|
|
File without changes
|