apache-airflow-providers-dbt-cloud 3.9.0rc1__py3-none-any.whl → 3.10.0rc1__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 +3 -3
- airflow/providers/dbt/cloud/get_provider_info.py +3 -2
- airflow/providers/dbt/cloud/sensors/dbt.py +4 -2
- airflow/providers/dbt/cloud/triggers/dbt.py +2 -1
- {apache_airflow_providers_dbt_cloud-3.9.0rc1.dist-info → apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info}/METADATA +8 -8
- {apache_airflow_providers_dbt_cloud-3.9.0rc1.dist-info → apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info}/RECORD +8 -8
- {apache_airflow_providers_dbt_cloud-3.9.0rc1.dist-info → apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_dbt_cloud-3.9.0rc1.dist-info → apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info}/entry_points.txt +0 -0
|
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "3.
|
|
32
|
+
__version__ = "3.10.0"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
|
-
"2.
|
|
35
|
+
"2.8.0"
|
|
36
36
|
):
|
|
37
37
|
raise RuntimeError(
|
|
38
|
-
f"The package `apache-airflow-providers-dbt-cloud:{__version__}` needs Apache Airflow 2.
|
|
38
|
+
f"The package `apache-airflow-providers-dbt-cloud:{__version__}` needs Apache Airflow 2.8.0+"
|
|
39
39
|
)
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "dbt Cloud",
|
|
29
29
|
"description": "`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1723970074,
|
|
32
32
|
"versions": [
|
|
33
|
+
"3.10.0",
|
|
33
34
|
"3.9.0",
|
|
34
35
|
"3.8.1",
|
|
35
36
|
"3.8.0",
|
|
@@ -59,7 +60,7 @@ def get_provider_info():
|
|
|
59
60
|
"1.0.1",
|
|
60
61
|
],
|
|
61
62
|
"dependencies": [
|
|
62
|
-
"apache-airflow>=2.
|
|
63
|
+
"apache-airflow>=2.8.0",
|
|
63
64
|
"apache-airflow-providers-http",
|
|
64
65
|
"asgiref",
|
|
65
66
|
"aiohttp>=3.9.2",
|
|
@@ -36,7 +36,8 @@ if TYPE_CHECKING:
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
class DbtCloudJobRunSensor(BaseSensorOperator):
|
|
39
|
-
"""
|
|
39
|
+
"""
|
|
40
|
+
Checks the status of a dbt Cloud job run.
|
|
40
41
|
|
|
41
42
|
.. seealso::
|
|
42
43
|
For more information on how to use this sensor, take a look at the guide:
|
|
@@ -108,7 +109,8 @@ class DbtCloudJobRunSensor(BaseSensorOperator):
|
|
|
108
109
|
return job_run_status == DbtCloudJobRunStatus.SUCCESS.value
|
|
109
110
|
|
|
110
111
|
def execute(self, context: Context) -> None:
|
|
111
|
-
"""
|
|
112
|
+
"""
|
|
113
|
+
Run the sensor.
|
|
112
114
|
|
|
113
115
|
Depending on whether ``deferrable`` is set, this would either defer to
|
|
114
116
|
the triggerer or poll for states of the job run, until the job reaches a
|
|
@@ -25,7 +25,8 @@ from airflow.triggers.base import BaseTrigger, TriggerEvent
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
class DbtCloudRunJobTrigger(BaseTrigger):
|
|
28
|
-
"""
|
|
28
|
+
"""
|
|
29
|
+
Trigger to make an HTTP call to dbt and get the status for the job.
|
|
29
30
|
|
|
30
31
|
This is done with run id in polling interval of time.
|
|
31
32
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-dbt-cloud
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.10.0rc1
|
|
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>
|
|
@@ -23,13 +23,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
23
23
|
Classifier: Topic :: System :: Monitoring
|
|
24
24
|
Requires-Dist: aiohttp>=3.9.2
|
|
25
25
|
Requires-Dist: apache-airflow-providers-http
|
|
26
|
-
Requires-Dist: apache-airflow>=2.
|
|
26
|
+
Requires-Dist: apache-airflow>=2.8.0rc0
|
|
27
27
|
Requires-Dist: asgiref
|
|
28
28
|
Requires-Dist: apache-airflow-providers-http ; extra == "http"
|
|
29
29
|
Requires-Dist: apache-airflow-providers-openlineage>=1.7.0rc0 ; extra == "openlineage"
|
|
30
30
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
31
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
32
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
31
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.10.0/changelog.html
|
|
32
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.10.0
|
|
33
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
34
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
35
35
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -81,7 +81,7 @@ Provides-Extra: openlineage
|
|
|
81
81
|
|
|
82
82
|
Package ``apache-airflow-providers-dbt-cloud``
|
|
83
83
|
|
|
84
|
-
Release: ``3.
|
|
84
|
+
Release: ``3.10.0.rc1``
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
`dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
|
|
@@ -94,7 +94,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
|
|
|
94
94
|
are in ``airflow.providers.dbt.cloud`` python package.
|
|
95
95
|
|
|
96
96
|
You can find package information and changelog for the provider
|
|
97
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
97
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.10.0/>`_.
|
|
98
98
|
|
|
99
99
|
Installation
|
|
100
100
|
------------
|
|
@@ -111,7 +111,7 @@ Requirements
|
|
|
111
111
|
================================= ==================
|
|
112
112
|
PIP package Version required
|
|
113
113
|
================================= ==================
|
|
114
|
-
``apache-airflow`` ``>=2.
|
|
114
|
+
``apache-airflow`` ``>=2.8.0``
|
|
115
115
|
``apache-airflow-providers-http``
|
|
116
116
|
``asgiref``
|
|
117
117
|
``aiohttp`` ``>=3.9.2``
|
|
@@ -138,4 +138,4 @@ Dependent package
|
|
|
138
138
|
============================================================================================================== ===============
|
|
139
139
|
|
|
140
140
|
The changelog for the provider package can be found in the
|
|
141
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.
|
|
141
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.10.0/changelog.html>`_.
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
airflow/providers/dbt/cloud/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
-
airflow/providers/dbt/cloud/__init__.py,sha256=
|
|
3
|
-
airflow/providers/dbt/cloud/get_provider_info.py,sha256=
|
|
2
|
+
airflow/providers/dbt/cloud/__init__.py,sha256=Oa63GFa4hjQjR1FAe42HAxay4o_nR_cMZeCoB5UeJA4,1497
|
|
3
|
+
airflow/providers/dbt/cloud/get_provider_info.py,sha256=FIoKyLkneuM4ZuYXaGG5jwfPGX94Ndqqi2r1JbZ4h50,3661
|
|
4
4
|
airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
5
5
|
airflow/providers/dbt/cloud/hooks/dbt.py,sha256=EX_0CP-jL1F-j0syrpcM8vvIdXELGGu3LyGj3yOxpx8,28427
|
|
6
6
|
airflow/providers/dbt/cloud/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
7
7
|
airflow/providers/dbt/cloud/operators/dbt.py,sha256=jgdk-Ve8YKYy5Twz9lq74iQpElEI_mS1IwASmCqPDQY,16159
|
|
8
8
|
airflow/providers/dbt/cloud/sensors/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
9
|
-
airflow/providers/dbt/cloud/sensors/dbt.py,sha256=
|
|
9
|
+
airflow/providers/dbt/cloud/sensors/dbt.py,sha256=IjR2rV_v-mfwTn6lNSqp1Vu8twRK79-larghIx-hnBY,6874
|
|
10
10
|
airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
11
|
-
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=
|
|
11
|
+
airflow/providers/dbt/cloud/triggers/dbt.py,sha256=30fntKeUi1bUJtv50Rv09KtJNsN8gBtjLPsf3Xoccks,4680
|
|
12
12
|
airflow/providers/dbt/cloud/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
13
13
|
airflow/providers/dbt/cloud/utils/openlineage.py,sha256=tLHfM6L9cOy4ZvpnJFjJAI3qxAztn073GbLHsXpjvFQ,6265
|
|
14
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
15
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
16
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
17
|
-
apache_airflow_providers_dbt_cloud-3.
|
|
14
|
+
apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
|
|
15
|
+
apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
16
|
+
apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info/METADATA,sha256=oxftPINmBNkdMrQPHUi_1yvxhNw9ufUOjjFnIKXHw8c,6369
|
|
17
|
+
apache_airflow_providers_dbt_cloud-3.10.0rc1.dist-info/RECORD,,
|
|
File without changes
|