apache-airflow-providers-zendesk 4.2.0__py3-none-any.whl → 4.3.0__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.
@@ -15,3 +15,27 @@
15
15
  # KIND, either express or implied. See the License for the
16
16
  # specific language governing permissions and limitations
17
17
  # under the License.
18
+ #
19
+ # NOTE! THIS FILE IS AUTOMATICALLY GENERATED AND WILL BE
20
+ # OVERWRITTEN WHEN PREPARING DOCUMENTATION FOR THE PACKAGES.
21
+ #
22
+ # IF YOU WANT TO MODIFY IT, YOU SHOULD MODIFY THE TEMPLATE
23
+ # `PROVIDER__INIT__PY_TEMPLATE.py.jinja2` IN the `dev/provider_packages` DIRECTORY
24
+ #
25
+ from __future__ import annotations
26
+
27
+ import packaging.version
28
+
29
+ __all__ = ["__version__"]
30
+
31
+ __version__ = "4.3.0"
32
+
33
+ try:
34
+ from airflow import __version__ as airflow_version
35
+ except ImportError:
36
+ from airflow.version import version as airflow_version
37
+
38
+ if packaging.version.parse(airflow_version) < packaging.version.parse("2.4.0"):
39
+ raise RuntimeError(
40
+ f"The package `apache-airflow-providers-zendesk:{__version__}` requires Apache Airflow 2.4.0+" # NOQA: E501
41
+ )
@@ -27,7 +27,9 @@ def get_provider_info():
27
27
  "package-name": "apache-airflow-providers-zendesk",
28
28
  "name": "Zendesk",
29
29
  "description": "`Zendesk <https://www.zendesk.com/>`__\n",
30
+ "suspended": False,
30
31
  "versions": [
32
+ "4.3.0",
31
33
  "4.2.0",
32
34
  "4.1.0",
33
35
  "4.0.0",
@@ -40,7 +42,7 @@ def get_provider_info():
40
42
  "1.0.1",
41
43
  "1.0.0",
42
44
  ],
43
- "dependencies": ["apache-airflow>=2.3.0", "zenpy>=2.0.24"],
45
+ "dependencies": ["apache-airflow>=2.4.0", "zenpy>=2.0.24"],
44
46
  "integrations": [
45
47
  {
46
48
  "integration-name": "Zendesk",
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-zendesk
3
- Version: 4.2.0
3
+ Version: 4.3.0
4
4
  Summary: Provider for Apache Airflow. Implements apache-airflow-providers-zendesk package
5
5
  Home-page: https://airflow.apache.org/
6
6
  Download-URL: https://archive.apache.org/dist/airflow/providers
7
7
  Author: Apache Software Foundation
8
8
  Author-email: dev@airflow.apache.org
9
9
  License: Apache License 2.0
10
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/
10
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/
11
11
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
12
12
  Project-URL: Source Code, https://github.com/apache/airflow
13
13
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
@@ -30,7 +30,7 @@ Requires-Python: ~=3.7
30
30
  Description-Content-Type: text/x-rst
31
31
  License-File: LICENSE
32
32
  License-File: NOTICE
33
- Requires-Dist: apache-airflow (>=2.3.0)
33
+ Requires-Dist: apache-airflow (>=2.4.0)
34
34
  Requires-Dist: zenpy (>=2.0.24)
35
35
 
36
36
 
@@ -54,7 +54,7 @@ Requires-Dist: zenpy (>=2.0.24)
54
54
 
55
55
  Package ``apache-airflow-providers-zendesk``
56
56
 
57
- Release: ``4.2.0``
57
+ Release: ``4.3.0``
58
58
 
59
59
 
60
60
  `Zendesk <https://www.zendesk.com/>`__
@@ -67,7 +67,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
67
67
  are in ``airflow.providers.zendesk`` python package.
68
68
 
69
69
  You can find package information and changelog for the provider
70
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/>`_.
70
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/>`_.
71
71
 
72
72
 
73
73
  Installation
@@ -85,7 +85,7 @@ Requirements
85
85
  ================== ==================
86
86
  PIP package Version required
87
87
  ================== ==================
88
- ``apache-airflow`` ``>=2.3.0``
88
+ ``apache-airflow`` ``>=2.4.0``
89
89
  ``zenpy`` ``>=2.0.24``
90
90
  ================== ==================
91
91
 
@@ -115,6 +115,26 @@ PIP package Version required
115
115
  Changelog
116
116
  ---------
117
117
 
118
+ 4.3.0
119
+ .....
120
+
121
+ .. note::
122
+ This release of provider is only available for Airflow 2.4+ as explained in the
123
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
124
+
125
+ Misc
126
+ ~~~~
127
+
128
+ * ``Bump minimum Airflow version in providers (#30917)``
129
+
130
+ .. Below changes are excluded from the changelog. Move them to
131
+ appropriate section above if needed. Do not delete the lines(!):
132
+ * ``Add full automation for min Airflow version for providers (#30994)``
133
+ * ``Add mechanism to suspend providers (#30422)``
134
+ * ``Use '__version__' in providers not 'version' (#31393)``
135
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
136
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
137
+
118
138
  4.2.0
119
139
  .....
120
140
 
@@ -126,8 +146,9 @@ Features
126
146
  4.1.0
127
147
  .....
128
148
 
129
- This release of provider is only available for Airflow 2.3+ as explained in the
130
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_.
149
+ .. note::
150
+ This release of provider is only available for Airflow 2.3+ as explained in the
151
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
131
152
 
132
153
  Misc
133
154
  ~~~~
@@ -154,8 +175,9 @@ Bug Fixes
154
175
  Breaking changes
155
176
  ~~~~~~~~~~~~~~~~
156
177
 
157
- * This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow
158
- providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers
178
+ .. note::
179
+ This release of provider is only available for Airflow 2.2+ as explained in the
180
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
159
181
 
160
182
  .. Below changes are excluded from the changelog. Move them to
161
183
  appropriate section above if needed. Do not delete the lines(!):
@@ -0,0 +1,11 @@
1
+ airflow/providers/zendesk/__init__.py,sha256=RkWAXz0GFApdbuhZTZmuQc3zlnDjnqauq8Wt_dCwkB0,1532
2
+ airflow/providers/zendesk/get_provider_info.py,sha256=16XQwvEM8JbPJ1sI1DxN_53yf_-ZbBOL3otV5TkiDf0,2224
3
+ airflow/providers/zendesk/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
4
+ airflow/providers/zendesk/hooks/zendesk.py,sha256=e_tsxRgvhPteRjUY-DUpdLj7qekQNRC19IOXJTQOsQA,4536
5
+ apache_airflow_providers_zendesk-4.3.0.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
6
+ apache_airflow_providers_zendesk-4.3.0.dist-info/METADATA,sha256=FYT43a11VG_kQGyYAwfnNiIGuSNmX2sMJKCjcSeZnl0,10068
7
+ apache_airflow_providers_zendesk-4.3.0.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
8
+ apache_airflow_providers_zendesk-4.3.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
9
+ apache_airflow_providers_zendesk-4.3.0.dist-info/entry_points.txt,sha256=wy74m_XiVALLSyIVIyb5Lpe3qr7NZ_9FP8YQNSq8CfI,104
10
+ apache_airflow_providers_zendesk-4.3.0.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
11
+ apache_airflow_providers_zendesk-4.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: bdist_wheel (0.40.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,11 +0,0 @@
1
- airflow/providers/zendesk/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
2
- airflow/providers/zendesk/get_provider_info.py,sha256=wAhPBjxcoaz-1G8Z01mig-eLWK1lXy6pqRiF8gyacZE,2175
3
- airflow/providers/zendesk/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
4
- airflow/providers/zendesk/hooks/zendesk.py,sha256=e_tsxRgvhPteRjUY-DUpdLj7qekQNRC19IOXJTQOsQA,4536
5
- apache_airflow_providers_zendesk-4.2.0.dist-info/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
6
- apache_airflow_providers_zendesk-4.2.0.dist-info/METADATA,sha256=O13EHhGO7JgIT4HFkQ7smDgOrf4lU4MBCrp1v9h4D70,9108
7
- apache_airflow_providers_zendesk-4.2.0.dist-info/NOTICE,sha256=m-6s2XynUxVSUIxO4rVablAZCvFq-wmLrqV91DotRBw,240
8
- apache_airflow_providers_zendesk-4.2.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
9
- apache_airflow_providers_zendesk-4.2.0.dist-info/entry_points.txt,sha256=wy74m_XiVALLSyIVIyb5Lpe3qr7NZ_9FP8YQNSq8CfI,104
10
- apache_airflow_providers_zendesk-4.2.0.dist-info/top_level.txt,sha256=OeMVH5md7fr2QQWpnZoOWWxWO-0WH1IP70lpTVwopPg,8
11
- apache_airflow_providers_zendesk-4.2.0.dist-info/RECORD,,