apache-airflow-providers-zendesk 4.7.0rc2__tar.gz → 4.7.1rc1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-zendesk
3
- Version: 4.7.0rc2
3
+ Version: 4.7.1rc1
4
4
  Summary: Provider package apache-airflow-providers-zendesk for Apache Airflow
5
5
  Keywords: airflow-provider,zendesk,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -24,8 +24,8 @@ Classifier: Topic :: System :: Monitoring
24
24
  Requires-Dist: apache-airflow>=2.7.0rc0
25
25
  Requires-Dist: zenpy>=2.0.40
26
26
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
27
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/changelog.html
28
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0
27
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/changelog.html
28
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1
29
29
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
30
30
  Project-URL: Source Code, https://github.com/apache/airflow
31
31
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -75,7 +75,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
75
75
 
76
76
  Package ``apache-airflow-providers-zendesk``
77
77
 
78
- Release: ``4.7.0.rc2``
78
+ Release: ``4.7.1.rc1``
79
79
 
80
80
 
81
81
  `Zendesk <https://www.zendesk.com/>`__
@@ -88,7 +88,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
88
88
  are in ``airflow.providers.zendesk`` python package.
89
89
 
90
90
  You can find package information and changelog for the provider
91
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/>`_.
91
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/>`_.
92
92
 
93
93
  Installation
94
94
  ------------
@@ -110,4 +110,4 @@ PIP package Version required
110
110
  ================== ==================
111
111
 
112
112
  The changelog for the provider package can be found in the
113
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/changelog.html>`_.
113
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/changelog.html>`_.
@@ -42,7 +42,7 @@
42
42
 
43
43
  Package ``apache-airflow-providers-zendesk``
44
44
 
45
- Release: ``4.7.0.rc2``
45
+ Release: ``4.7.1.rc1``
46
46
 
47
47
 
48
48
  `Zendesk <https://www.zendesk.com/>`__
@@ -55,7 +55,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
55
55
  are in ``airflow.providers.zendesk`` python package.
56
56
 
57
57
  You can find package information and changelog for the provider
58
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/>`_.
58
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/>`_.
59
59
 
60
60
  Installation
61
61
  ------------
@@ -77,4 +77,4 @@ PIP package Version required
77
77
  ================== ==================
78
78
 
79
79
  The changelog for the provider package can be found in the
80
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/changelog.html>`_.
80
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/changelog.html>`_.
@@ -25,14 +25,11 @@ from __future__ import annotations
25
25
 
26
26
  import packaging.version
27
27
 
28
- __all__ = ["__version__"]
28
+ from airflow import __version__ as airflow_version
29
29
 
30
- __version__ = "4.7.0"
30
+ __all__ = ["__version__"]
31
31
 
32
- try:
33
- from airflow import __version__ as airflow_version
34
- except ImportError:
35
- from airflow.version import version as airflow_version
32
+ __version__ = "4.7.1"
36
33
 
37
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
38
35
  "2.7.0"
@@ -28,8 +28,9 @@ def get_provider_info():
28
28
  "name": "Zendesk",
29
29
  "description": "`Zendesk <https://www.zendesk.com/>`__\n",
30
30
  "state": "ready",
31
- "source-date-epoch": 1714477769,
31
+ "source-date-epoch": 1716289258,
32
32
  "versions": [
33
+ "4.7.1",
33
34
  "4.7.0",
34
35
  "4.6.0",
35
36
  "4.5.0",
@@ -28,7 +28,7 @@ build-backend = "flit_core.buildapi"
28
28
 
29
29
  [project]
30
30
  name = "apache-airflow-providers-zendesk"
31
- version = "4.7.0.rc2"
31
+ version = "4.7.1.rc1"
32
32
  description = "Provider package apache-airflow-providers-zendesk for Apache Airflow"
33
33
  readme = "README.rst"
34
34
  authors = [
@@ -61,8 +61,8 @@ dependencies = [
61
61
  ]
62
62
 
63
63
  [project.urls]
64
- "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0"
65
- "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.0/changelog.html"
64
+ "Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1"
65
+ "Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.7.1/changelog.html"
66
66
  "Bug Tracker" = "https://github.com/apache/airflow/issues"
67
67
  "Source Code" = "https://github.com/apache/airflow"
68
68
  "Slack Chat" = "https://s.apache.org/airflow-slack"