apache-airflow-providers-dbt-cloud 3.11.0__py3-none-any.whl → 3.11.1__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.
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "3.11.0"
32
+ __version__ = "3.11.1"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.8.0"
@@ -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": 1728485039,
31
+ "source-date-epoch": 1730012541,
32
32
  "versions": [
33
+ "3.11.1",
33
34
  "3.11.0",
34
35
  "3.10.1",
35
36
  "3.10.0",
@@ -64,7 +65,7 @@ def get_provider_info():
64
65
  "dependencies": [
65
66
  "apache-airflow>=2.8.0",
66
67
  "apache-airflow-providers-http",
67
- "asgiref",
68
+ "asgiref>=2.3.0",
68
69
  "aiohttp>=3.9.2",
69
70
  ],
70
71
  "additional-extras": [
@@ -20,10 +20,11 @@ import asyncio
20
20
  import json
21
21
  import time
22
22
  import warnings
23
+ from collections.abc import Sequence
23
24
  from enum import Enum
24
25
  from functools import cached_property, wraps
25
26
  from inspect import signature
26
- from typing import TYPE_CHECKING, Any, Callable, Sequence, Set, TypeVar, cast
27
+ from typing import TYPE_CHECKING, Any, Callable, TypeVar, cast
27
28
 
28
29
  import aiohttp
29
30
  from asgiref.sync import sync_to_async
@@ -117,7 +118,7 @@ class DbtCloudJobRunStatus(Enum):
117
118
  @classmethod
118
119
  def check_is_valid(cls, statuses: int | Sequence[int] | set[int]):
119
120
  """Validate input statuses are a known value."""
120
- if isinstance(statuses, (Sequence, Set)):
121
+ if isinstance(statuses, (Sequence, set)):
121
122
  for status in statuses:
122
123
  cls(status)
123
124
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-dbt-cloud
3
- Version: 3.11.0
3
+ Version: 3.11.1
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,12 +23,12 @@ Classifier: Topic :: System :: Monitoring
23
23
  Requires-Dist: aiohttp>=3.9.2
24
24
  Requires-Dist: apache-airflow-providers-http
25
25
  Requires-Dist: apache-airflow>=2.8.0
26
- Requires-Dist: asgiref
26
+ Requires-Dist: asgiref>=2.3.0
27
27
  Requires-Dist: apache-airflow-providers-http ; extra == "http"
28
28
  Requires-Dist: apache-airflow-providers-openlineage>=1.7.0 ; extra == "openlineage"
29
29
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
30
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.0/changelog.html
31
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.0
30
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.1/changelog.html
31
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.1
32
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
33
33
  Project-URL: Source Code, https://github.com/apache/airflow
34
34
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -80,7 +80,7 @@ Provides-Extra: openlineage
80
80
 
81
81
  Package ``apache-airflow-providers-dbt-cloud``
82
82
 
83
- Release: ``3.11.0``
83
+ Release: ``3.11.1``
84
84
 
85
85
 
86
86
  `dbt Cloud <https://www.getdbt.com/product/dbt-cloud/>`__
@@ -93,7 +93,7 @@ This is a provider package for ``dbt.cloud`` provider. All classes for this prov
93
93
  are in ``airflow.providers.dbt.cloud`` python package.
94
94
 
95
95
  You can find package information and changelog for the provider
96
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.0/>`_.
96
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.1/>`_.
97
97
 
98
98
  Installation
99
99
  ------------
@@ -112,7 +112,7 @@ PIP package Version required
112
112
  ================================= ==================
113
113
  ``apache-airflow`` ``>=2.8.0``
114
114
  ``apache-airflow-providers-http``
115
- ``asgiref``
115
+ ``asgiref`` ``>=2.3.0``
116
116
  ``aiohttp`` ``>=3.9.2``
117
117
  ================================= ==================
118
118
 
@@ -137,4 +137,4 @@ Dependent package
137
137
  ============================================================================================================== ===============
138
138
 
139
139
  The changelog for the provider package can be found in the
140
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.0/changelog.html>`_.
140
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-dbt-cloud/3.11.1/changelog.html>`_.
@@ -1,8 +1,8 @@
1
1
  airflow/providers/dbt/cloud/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
2
- airflow/providers/dbt/cloud/__init__.py,sha256=-rFvFoF_l55t6GWp5ReSIvh9E-uzVtHuMA4xqykGcw8,1497
3
- airflow/providers/dbt/cloud/get_provider_info.py,sha256=bUczi6uxgLzfi5gWW__531rpS_mqbLBfFW8C8XW01HQ,3705
2
+ airflow/providers/dbt/cloud/__init__.py,sha256=MHvA6DTeIeG4wOGTj2KpY_9Fuja01GYKICkXfA3QxbU,1497
3
+ airflow/providers/dbt/cloud/get_provider_info.py,sha256=n2aT3J2eowqfjS--bBblWseaKKBh8EeJUqi3kUu38mI,3734
4
4
  airflow/providers/dbt/cloud/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
- airflow/providers/dbt/cloud/hooks/dbt.py,sha256=MT1dChJs0IcRlcY5piOV3N9cZ5KsWehbk6PXVQAR32k,29193
5
+ airflow/providers/dbt/cloud/hooks/dbt.py,sha256=ExKsYoJOcPgCKf_QcB7XPYcXVe69czXDZT_XdmoJyMk,29215
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
@@ -11,7 +11,7 @@ airflow/providers/dbt/cloud/triggers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOF
11
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.11.0.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
15
- apache_airflow_providers_dbt_cloud-3.11.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
16
- apache_airflow_providers_dbt_cloud-3.11.0.dist-info/METADATA,sha256=OFCe3a7FKJQb2sISswbsVSaX-9snTZNpWCGuc9CZ_q4,6302
17
- apache_airflow_providers_dbt_cloud-3.11.0.dist-info/RECORD,,
14
+ apache_airflow_providers_dbt_cloud-3.11.1.dist-info/entry_points.txt,sha256=c18L1WEEK18WQeEGrm9kMVqutiYJHiWGH5jU1JqnToE,105
15
+ apache_airflow_providers_dbt_cloud-3.11.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
16
+ apache_airflow_providers_dbt_cloud-3.11.1.dist-info/METADATA,sha256=_bEuEFN7-L0cuATph6K8D2qhxKN0YJjXeEg46cIoSm4,6344
17
+ apache_airflow_providers_dbt_cloud-3.11.1.dist-info/RECORD,,