apache-airflow-providers-dbt-cloud 4.6.3rc1__py3-none-any.whl → 4.6.4rc1__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.
- airflow/providers/dbt/cloud/__init__.py +1 -1
- airflow/providers/dbt/cloud/hooks/dbt.py +2 -1
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/METADATA +7 -7
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/RECORD +8 -8
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/entry_points.txt +0 -0
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/licenses/LICENSE +0 -0
- {apache_airflow_providers_dbt_cloud-4.6.3rc1.dist-info → apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info}/licenses/NOTICE +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "4.6.
|
|
32
|
+
__version__ = "4.6.4"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.11.0"
|
|
@@ -34,6 +34,7 @@ from requests.auth import AuthBase
|
|
|
34
34
|
from requests.sessions import Session
|
|
35
35
|
from tenacity import AsyncRetrying, RetryCallState, retry_if_exception, stop_after_attempt, wait_exponential
|
|
36
36
|
|
|
37
|
+
from airflow.providers.common.compat.connection import get_async_connection
|
|
37
38
|
from airflow.providers.common.compat.sdk import AirflowException
|
|
38
39
|
from airflow.providers.http.hooks.http import HttpHook
|
|
39
40
|
|
|
@@ -161,7 +162,7 @@ def provide_account_id(func: T) -> T:
|
|
|
161
162
|
if bound_args.arguments.get("account_id") is None:
|
|
162
163
|
self = args[0]
|
|
163
164
|
if self.dbt_cloud_conn_id:
|
|
164
|
-
connection = await
|
|
165
|
+
connection = await get_async_connection(self.dbt_cloud_conn_id)
|
|
165
166
|
default_account_id = connection.login
|
|
166
167
|
if not default_account_id:
|
|
167
168
|
raise AirflowException("Could not determine the dbt Cloud account.")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 4.6.
|
|
3
|
+
Version: 4.6.4rc1
|
|
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>
|
|
@@ -30,8 +30,8 @@ Requires-Dist: aiohttp>=3.9.2
|
|
|
30
30
|
Requires-Dist: tenacity>=8.3.0
|
|
31
31
|
Requires-Dist: apache-airflow-providers-openlineage>=2.3.0rc1 ; extra == "openlineage"
|
|
32
32
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
33
|
-
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.
|
|
34
|
-
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.
|
|
33
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.4/changelog.html
|
|
34
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.4
|
|
35
35
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
36
36
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
37
37
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -63,7 +63,7 @@ Provides-Extra: openlineage
|
|
|
63
63
|
|
|
64
64
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
65
65
|
|
|
66
|
-
Release: ``4.6.
|
|
66
|
+
Release: ``4.6.4``
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
@@ -76,7 +76,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
76
76
|
are in ``airflow.providers.dbt.cloud`` python package.
|
|
77
77
|
|
|
78
78
|
You can find package information and changelog for the provider
|
|
79
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.
|
|
79
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.4/>`_.
|
|
80
80
|
|
|
81
81
|
Installation
|
|
82
82
|
------------
|
|
@@ -94,7 +94,7 @@ Requirements
|
|
|
94
94
|
PIP package Version required
|
|
95
95
|
========================================== ==================
|
|
96
96
|
``apache-airflow`` ``>=2.11.0``
|
|
97
|
-
``apache-airflow-providers-common-compat`` ``>=1.
|
|
97
|
+
``apache-airflow-providers-common-compat`` ``>=1.12.0``
|
|
98
98
|
``apache-airflow-providers-http``
|
|
99
99
|
``asgiref`` ``>=2.3.0``
|
|
100
100
|
``aiohttp`` ``>=3.9.2``
|
|
@@ -132,5 +132,5 @@ Extra Dependencies
|
|
|
132
132
|
=============== ===============================================
|
|
133
133
|
|
|
134
134
|
The changelog for the provider package can be found in the
|
|
135
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.
|
|
135
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/4.6.4/changelog.html>`_.
|
|
136
136
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
airflow/providers/dbt/cloud/__init__.py,sha256=
|
|
1
|
+
airflow/providers/dbt/cloud/__init__.py,sha256=D6m9fmacAVrUj5XRYQjDPtvv1Li3mfHDWFD5JaINomo,1498
|
|
2
2
|
airflow/providers/dbt/cloud/get_provider_info.py,sha256=ufODYanp90_NPW1UftzGIwwG65Olb5l5PfSp0Mo1SOs,2507
|
|
3
3
|
airflow/providers/dbt/cloud/version_compat.py,sha256=RQbdCueLOaFZWekpQmF0BoAoJInW8EoyvJ3Ah-HbrPo,1577
|
|
4
4
|
airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
|
-
airflow/providers/dbt/cloud/hooks/dbt.py,sha256=
|
|
5
|
+
airflow/providers/dbt/cloud/hooks/dbt.py,sha256=IFC_hZBM6qPMwcUJ5aIPPM8-aOqYZolbdp9TCG83gqc,38533
|
|
6
6
|
airflow/providers/dbt/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
7
|
airflow/providers/dbt/cloud/operators/dbt.py,sha256=jQorRwZoFFhbJEXyECFC9lpxs4s0OcAQ1-Eao6iVDXQ,18346
|
|
8
8
|
airflow/providers/dbt/cloud/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
@@ -11,9 +11,9 @@ airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOF
|
|
|
11
11
|
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=p6-LU2GPpEZ2DtL4ZTkG7OIVAFCblKYbjV9z49ooltI,4952
|
|
12
12
|
airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
13
13
|
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=tg1yqGWgwqGDYpe79CSGSdLE-_5ADubtWVxrjqm1De8,8635
|
|
14
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
15
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
16
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
17
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
18
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
19
|
-
apache_airflow_providers_dbt_cloud-4.6.
|
|
14
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
|
|
15
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/licenses/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
16
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/licenses/NOTICE,sha256=_cWHznIoUSbLCY_KfmKqetlKlsoH0c2VBjmZjElAzuc,168
|
|
17
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
18
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/METADATA,sha256=e7VpLA4R8zYwQrFwIgfeCOzZOwZUrU5HJhDOXPQpj0s,6224
|
|
19
|
+
apache_airflow_providers_dbt_cloud-4.6.4rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|