apache-airflow-providers-yandex 4.0.2rc1__py3-none-any.whl → 4.0.3rc1__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__ = "4.0.2"
32
+ __version__ = "4.0.3"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.9.0"
@@ -27,8 +27,9 @@ def get_provider_info():
27
27
  "name": "Yandex",
28
28
  "description": "This package is for Yandex, including:\n\n - `Yandex.Cloud <https://cloud.yandex.com/>`__\n",
29
29
  "state": "ready",
30
- "source-date-epoch": 1741510019,
30
+ "source-date-epoch": 1742981358,
31
31
  "versions": [
32
+ "4.0.3",
32
33
  "4.0.2",
33
34
  "4.0.1",
34
35
  "4.0.0",
@@ -121,5 +122,5 @@ def get_provider_info():
121
122
  },
122
123
  "dependencies": ["apache-airflow>=2.9.0", "yandexcloud>=0.308.0", "yandex-query-client>=0.1.4"],
123
124
  "optional-dependencies": {"common.compat": ["apache-airflow-providers-common-compat"]},
124
- "devel-dependencies": [],
125
+ "devel-dependencies": ["responses>=0.25.0"],
125
126
  }
@@ -18,8 +18,6 @@ from __future__ import annotations
18
18
 
19
19
  from typing import TYPE_CHECKING
20
20
 
21
- from airflow.models import XCom
22
-
23
21
  if TYPE_CHECKING:
24
22
  from airflow.models import BaseOperator
25
23
  from airflow.models.taskinstancekey import TaskInstanceKey
@@ -34,7 +32,9 @@ from airflow.providers.common.compat.version_compat import AIRFLOW_V_3_0_PLUS
34
32
 
35
33
  if AIRFLOW_V_3_0_PLUS:
36
34
  from airflow.sdk import BaseOperatorLink
35
+ from airflow.sdk.execution_time.xcom import XCom
37
36
  else:
37
+ from airflow.models import XCom # type: ignore[no-redef]
38
38
  from airflow.models.baseoperatorlink import BaseOperatorLink # type: ignore[no-redef]
39
39
 
40
40
  XCOM_WEBLINK_KEY = "web_link"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-yandex
3
- Version: 4.0.2rc1
3
+ Version: 4.0.3rc1
4
4
  Summary: Provider package apache-airflow-providers-yandex for Apache Airflow
5
5
  Keywords: airflow-provider,yandex,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -25,11 +25,11 @@ Requires-Dist: yandexcloud>=0.308.0
25
25
  Requires-Dist: yandex-query-client>=0.1.4
26
26
  Requires-Dist: apache-airflow-providers-common-compat ; extra == "common-compat"
27
27
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
28
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.2/changelog.html
29
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.2
28
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/changelog.html
29
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3
30
+ Project-URL: Mastodon, https://fosstodon.org/@airflow
30
31
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
31
32
  Project-URL: Source Code, https://github.com/apache/airflow
32
- Project-URL: Twitter, https://x.com/ApacheAirflow
33
33
  Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
34
34
  Provides-Extra: common-compat
35
35
 
@@ -58,7 +58,7 @@ Provides-Extra: common-compat
58
58
 
59
59
  Package ``apache-airflow-providers-yandex``
60
60
 
61
- Release: ``4.0.2``
61
+ Release: ``4.0.3``
62
62
 
63
63
 
64
64
  This package is for Yandex, including:
@@ -73,7 +73,7 @@ This is a provider package for ``yandex`` provider. All classes for this provide
73
73
  are in ``airflow.providers.yandex`` python package.
74
74
 
75
75
  You can find package information and changelog for the provider
76
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.2/>`_.
76
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/>`_.
77
77
 
78
78
  Installation
79
79
  ------------
@@ -99,7 +99,7 @@ Cross provider package dependencies
99
99
  -----------------------------------
100
100
 
101
101
  Those are dependencies that might be needed in order to use all the features of the package.
102
- You need to install the specified provider packages in order to use them.
102
+ You need to install the specified providers in order to use them.
103
103
 
104
104
  You can install such cross-provider dependencies when installing from PyPI. For example:
105
105
 
@@ -115,5 +115,5 @@ Dependent package
115
115
  ================================================================================================================== =================
116
116
 
117
117
  The changelog for the provider package can be found in the
118
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.2/changelog.html>`_.
118
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-yandex/4.0.3/changelog.html>`_.
119
119
 
@@ -1,12 +1,12 @@
1
1
  airflow/providers/yandex/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/yandex/__init__.py,sha256=-Jvg6rVenxLg5Y5xMiThCeYj1p78ifTAiOoeqhyVp6E,1493
3
- airflow/providers/yandex/get_provider_info.py,sha256=5TcUoUJnFoqvGoIElD5O6gdMB3RCldaYwqmNjQ3v3jI,4922
2
+ airflow/providers/yandex/__init__.py,sha256=Ymtaj57IkODtWV_qco4hVEospx2JDWqqFhR8tDzi3bI,1493
3
+ airflow/providers/yandex/get_provider_info.py,sha256=wWAAOqaZ2nJQ3qtradeDOyQ2OD1MknxeQWwuWFgIJBk,4962
4
4
  airflow/providers/yandex/hooks/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
5
  airflow/providers/yandex/hooks/dataproc.py,sha256=8ykGvlZUAjAKHpypiOYcWVJk7u-WNjfEohuyOy1Okss,1944
6
6
  airflow/providers/yandex/hooks/yandex.py,sha256=9zca0C_qNH9BOpz8HyLruz5P30rt-x1YvlYXbUCIqDI,6434
7
7
  airflow/providers/yandex/hooks/yq.py,sha256=Qh1ZTp8OVKvQ6sFzmKUMe3kbkYT5v7D4qEq6VsKtB2k,3503
8
8
  airflow/providers/yandex/links/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
9
- airflow/providers/yandex/links/yq.py,sha256=hkQ5iDaBbFtGNrb9vTn7fblvIlhIY-cBppX9FxZxVQg,1968
9
+ airflow/providers/yandex/links/yq.py,sha256=kvrhHEeM0fdfdMT3IgHXrhCpL_4a0xZIUsATYDa1a4o,2050
10
10
  airflow/providers/yandex/operators/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
11
11
  airflow/providers/yandex/operators/dataproc.py,sha256=Ir9RPYT0jYeFof2SlFG0kaLgYXrr7axltoMB5MlC1wY,25816
12
12
  airflow/providers/yandex/operators/yq.py,sha256=1MxiWDG2fAZ3Rw82vLEHsmvjNQcZsO00ujt135RsEA0,3412
@@ -17,7 +17,7 @@ airflow/providers/yandex/utils/credentials.py,sha256=l-8lIkQaIXTsNP_hMfP_tVADM54
17
17
  airflow/providers/yandex/utils/defaults.py,sha256=CXt75MhGJe8echoDpl1vR4VG5bEvYDDjIHmFqckDh2w,950
18
18
  airflow/providers/yandex/utils/fields.py,sha256=1D8SDWH8h0djj5Hnk50w6BpPeNJyP-689Qfjpkr-yCg,1728
19
19
  airflow/providers/yandex/utils/user_agent.py,sha256=AC-WEzhjxkgUYOy4LdX2-nnUZdMhKRRUCJ2_TjfNm6k,1839
20
- apache_airflow_providers_yandex-4.0.2rc1.dist-info/entry_points.txt,sha256=ApXKRkvdgU2QNSQovjewC0b-LptwfBGBnJB3LTgBNx8,102
21
- apache_airflow_providers_yandex-4.0.2rc1.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
22
- apache_airflow_providers_yandex-4.0.2rc1.dist-info/METADATA,sha256=ZRxwmKY66BLIT3oofejLE5hOo7SNivs0W2iPFJBI2AM,5198
23
- apache_airflow_providers_yandex-4.0.2rc1.dist-info/RECORD,,
20
+ apache_airflow_providers_yandex-4.0.3rc1.dist-info/entry_points.txt,sha256=ApXKRkvdgU2QNSQovjewC0b-LptwfBGBnJB3LTgBNx8,102
21
+ apache_airflow_providers_yandex-4.0.3rc1.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
22
+ apache_airflow_providers_yandex-4.0.3rc1.dist-info/METADATA,sha256=TpZMnMB4XtZ3cVWTTv1u3Z44G1RgJlThAokhzS1HPt4,5194
23
+ apache_airflow_providers_yandex-4.0.3rc1.dist-info/RECORD,,