apache-airflow-providers-zendesk 4.2.0__tar.gz → 4.3.0__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.
Files changed (21) hide show
  1. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/MANIFEST.in +1 -2
  2. {apache-airflow-providers-zendesk-4.2.0/apache_airflow_providers_zendesk.egg-info → apache-airflow-providers-zendesk-4.3.0}/PKG-INFO +31 -9
  3. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/README.rst +29 -7
  4. {apache-airflow-providers-zendesk-4.2.0/airflow/providers/zendesk/hooks → apache-airflow-providers-zendesk-4.3.0/airflow/providers/zendesk}/__init__.py +24 -0
  5. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/airflow/providers/zendesk/get_provider_info.py +3 -1
  6. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0/apache_airflow_providers_zendesk.egg-info}/PKG-INFO +31 -9
  7. apache-airflow-providers-zendesk-4.3.0/apache_airflow_providers_zendesk.egg-info/requires.txt +2 -0
  8. apache-airflow-providers-zendesk-4.3.0/pyproject.toml +165 -0
  9. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/setup.cfg +2 -2
  10. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/setup.py +7 -2
  11. apache-airflow-providers-zendesk-4.2.0/apache_airflow_providers_zendesk.egg-info/requires.txt +0 -2
  12. apache-airflow-providers-zendesk-4.2.0/pyproject.toml +0 -39
  13. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/LICENSE +0 -0
  14. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/NOTICE +0 -0
  15. {apache-airflow-providers-zendesk-4.2.0/airflow/providers/zendesk → apache-airflow-providers-zendesk-4.3.0/airflow/providers/zendesk/hooks}/__init__.py +0 -0
  16. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/airflow/providers/zendesk/hooks/zendesk.py +0 -0
  17. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/apache_airflow_providers_zendesk.egg-info/SOURCES.txt +0 -0
  18. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/apache_airflow_providers_zendesk.egg-info/dependency_links.txt +0 -0
  19. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/apache_airflow_providers_zendesk.egg-info/entry_points.txt +0 -0
  20. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/apache_airflow_providers_zendesk.egg-info/not-zip-safe +0 -0
  21. {apache-airflow-providers-zendesk-4.2.0 → apache-airflow-providers-zendesk-4.3.0}/apache_airflow_providers_zendesk.egg-info/top_level.txt +0 -0
@@ -27,6 +27,5 @@
27
27
 
28
28
  include NOTICE
29
29
  include LICENSE
30
- include CHANGELOG.txt
31
- include README.md
30
+ include CHANGELOG.rst
32
31
  global-exclude __pycache__ *.pyc
@@ -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
@@ -52,7 +52,7 @@ License-File: NOTICE
52
52
 
53
53
  Package ``apache-airflow-providers-zendesk``
54
54
 
55
- Release: ``4.2.0``
55
+ Release: ``4.3.0``
56
56
 
57
57
 
58
58
  `Zendesk <https://www.zendesk.com/>`__
@@ -65,7 +65,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
65
65
  are in ``airflow.providers.zendesk`` python package.
66
66
 
67
67
  You can find package information and changelog for the provider
68
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/>`_.
68
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/>`_.
69
69
 
70
70
 
71
71
  Installation
@@ -83,7 +83,7 @@ Requirements
83
83
  ================== ==================
84
84
  PIP package Version required
85
85
  ================== ==================
86
- ``apache-airflow`` ``>=2.3.0``
86
+ ``apache-airflow`` ``>=2.4.0``
87
87
  ``zenpy`` ``>=2.0.24``
88
88
  ================== ==================
89
89
 
@@ -113,6 +113,26 @@ PIP package Version required
113
113
  Changelog
114
114
  ---------
115
115
 
116
+ 4.3.0
117
+ .....
118
+
119
+ .. note::
120
+ This release of provider is only available for Airflow 2.4+ as explained in the
121
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
122
+
123
+ Misc
124
+ ~~~~
125
+
126
+ * ``Bump minimum Airflow version in providers (#30917)``
127
+
128
+ .. Below changes are excluded from the changelog. Move them to
129
+ appropriate section above if needed. Do not delete the lines(!):
130
+ * ``Add full automation for min Airflow version for providers (#30994)``
131
+ * ``Add mechanism to suspend providers (#30422)``
132
+ * ``Use '__version__' in providers not 'version' (#31393)``
133
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
134
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
135
+
116
136
  4.2.0
117
137
  .....
118
138
 
@@ -124,8 +144,9 @@ Features
124
144
  4.1.0
125
145
  .....
126
146
 
127
- This release of provider is only available for Airflow 2.3+ as explained in the
128
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_.
147
+ .. note::
148
+ This release of provider is only available for Airflow 2.3+ as explained in the
149
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
129
150
 
130
151
  Misc
131
152
  ~~~~
@@ -152,8 +173,9 @@ Bug Fixes
152
173
  Breaking changes
153
174
  ~~~~~~~~~~~~~~~~
154
175
 
155
- * This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow
156
- providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers
176
+ .. note::
177
+ This release of provider is only available for Airflow 2.2+ as explained in the
178
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
157
179
 
158
180
  .. Below changes are excluded from the changelog. Move them to
159
181
  appropriate section above if needed. Do not delete the lines(!):
@@ -19,7 +19,7 @@
19
19
 
20
20
  Package ``apache-airflow-providers-zendesk``
21
21
 
22
- Release: ``4.2.0``
22
+ Release: ``4.3.0``
23
23
 
24
24
 
25
25
  `Zendesk <https://www.zendesk.com/>`__
@@ -32,7 +32,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
32
32
  are in ``airflow.providers.zendesk`` python package.
33
33
 
34
34
  You can find package information and changelog for the provider
35
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/>`_.
35
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/>`_.
36
36
 
37
37
 
38
38
  Installation
@@ -50,7 +50,7 @@ Requirements
50
50
  ================== ==================
51
51
  PIP package Version required
52
52
  ================== ==================
53
- ``apache-airflow`` ``>=2.3.0``
53
+ ``apache-airflow`` ``>=2.4.0``
54
54
  ``zenpy`` ``>=2.0.24``
55
55
  ================== ==================
56
56
 
@@ -80,6 +80,26 @@ PIP package Version required
80
80
  Changelog
81
81
  ---------
82
82
 
83
+ 4.3.0
84
+ .....
85
+
86
+ .. note::
87
+ This release of provider is only available for Airflow 2.4+ as explained in the
88
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
89
+
90
+ Misc
91
+ ~~~~
92
+
93
+ * ``Bump minimum Airflow version in providers (#30917)``
94
+
95
+ .. Below changes are excluded from the changelog. Move them to
96
+ appropriate section above if needed. Do not delete the lines(!):
97
+ * ``Add full automation for min Airflow version for providers (#30994)``
98
+ * ``Add mechanism to suspend providers (#30422)``
99
+ * ``Use '__version__' in providers not 'version' (#31393)``
100
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
101
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
102
+
83
103
  4.2.0
84
104
  .....
85
105
 
@@ -91,8 +111,9 @@ Features
91
111
  4.1.0
92
112
  .....
93
113
 
94
- This release of provider is only available for Airflow 2.3+ as explained in the
95
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_.
114
+ .. note::
115
+ This release of provider is only available for Airflow 2.3+ as explained in the
116
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
96
117
 
97
118
  Misc
98
119
  ~~~~
@@ -119,8 +140,9 @@ Bug Fixes
119
140
  Breaking changes
120
141
  ~~~~~~~~~~~~~~~~
121
142
 
122
- * This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow
123
- providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers
143
+ .. note::
144
+ This release of provider is only available for Airflow 2.2+ as explained in the
145
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
124
146
 
125
147
  .. Below changes are excluded from the changelog. Move them to
126
148
  appropriate section above if needed. Do not delete the lines(!):
@@ -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
@@ -52,7 +52,7 @@ License-File: NOTICE
52
52
 
53
53
  Package ``apache-airflow-providers-zendesk``
54
54
 
55
- Release: ``4.2.0``
55
+ Release: ``4.3.0``
56
56
 
57
57
 
58
58
  `Zendesk <https://www.zendesk.com/>`__
@@ -65,7 +65,7 @@ This is a provider package for ``zendesk`` provider. All classes for this provid
65
65
  are in ``airflow.providers.zendesk`` python package.
66
66
 
67
67
  You can find package information and changelog for the provider
68
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/>`_.
68
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/>`_.
69
69
 
70
70
 
71
71
  Installation
@@ -83,7 +83,7 @@ Requirements
83
83
  ================== ==================
84
84
  PIP package Version required
85
85
  ================== ==================
86
- ``apache-airflow`` ``>=2.3.0``
86
+ ``apache-airflow`` ``>=2.4.0``
87
87
  ``zenpy`` ``>=2.0.24``
88
88
  ================== ==================
89
89
 
@@ -113,6 +113,26 @@ PIP package Version required
113
113
  Changelog
114
114
  ---------
115
115
 
116
+ 4.3.0
117
+ .....
118
+
119
+ .. note::
120
+ This release of provider is only available for Airflow 2.4+ as explained in the
121
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
122
+
123
+ Misc
124
+ ~~~~
125
+
126
+ * ``Bump minimum Airflow version in providers (#30917)``
127
+
128
+ .. Below changes are excluded from the changelog. Move them to
129
+ appropriate section above if needed. Do not delete the lines(!):
130
+ * ``Add full automation for min Airflow version for providers (#30994)``
131
+ * ``Add mechanism to suspend providers (#30422)``
132
+ * ``Use '__version__' in providers not 'version' (#31393)``
133
+ * ``Fixing circular import error in providers caused by airflow version check (#31379)``
134
+ * ``Prepare docs for May 2023 wave of Providers (#31252)``
135
+
116
136
  4.2.0
117
137
  .....
118
138
 
@@ -124,8 +144,9 @@ Features
124
144
  4.1.0
125
145
  .....
126
146
 
127
- This release of provider is only available for Airflow 2.3+ as explained in the
128
- `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/README.md#support-for-providers>`_.
147
+ .. note::
148
+ This release of provider is only available for Airflow 2.3+ as explained in the
149
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
129
150
 
130
151
  Misc
131
152
  ~~~~
@@ -152,8 +173,9 @@ Bug Fixes
152
173
  Breaking changes
153
174
  ~~~~~~~~~~~~~~~~
154
175
 
155
- * This release of provider is only available for Airflow 2.2+ as explained in the Apache Airflow
156
- providers support policy https://github.com/apache/airflow/blob/main/README.md#support-for-providers
176
+ .. note::
177
+ This release of provider is only available for Airflow 2.2+ as explained in the
178
+ `Apache Airflow providers support policy <https://github.com/apache/airflow/blob/main/PROVIDERS.rst#minimum-supported-version-of-airflow-for-community-managed-providers>`_.
157
179
 
158
180
  .. Below changes are excluded from the changelog. Move them to
159
181
  appropriate section above if needed. Do not delete the lines(!):
@@ -0,0 +1,2 @@
1
+ apache-airflow>=2.4.0
2
+ zenpy>=2.0.24
@@ -0,0 +1,165 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+ [tool.black]
18
+ line-length = 110
19
+ target-version = ['py37', 'py38', 'py39', 'py310']
20
+ # The build system section is needed in order to workaround the side-effect introduced by recent
21
+ # setup tools version. The recent setuptools version update (64.0.0) broke paths of editable installations
22
+ # and we have to pin it to 63.4.3 version
23
+ # The problem is tracked (and this limitation might be removed if it is solved) in:
24
+ # https://github.com/pypa/setuptools/issues/3548
25
+ [build-system]
26
+ requires = ['setuptools==67.2.0']
27
+ build-backend = "setuptools.build_meta"
28
+
29
+ [tool.ruff]
30
+ typing-modules = ["airflow.typing_compat"]
31
+ line-length = 110
32
+ extend-exclude = [
33
+ ".eggs",
34
+ "airflow/_vendor/*",
35
+ "airflow/providers/google/ads/_vendor/*",
36
+ # The files generated by stubgen aren't 100% valid syntax it turns out, and we don't ship them, so we can
37
+ # ignore them in ruff
38
+ "airflow/providers/common/sql/*/*.pyi"
39
+ ]
40
+
41
+ # TODO: Bump to Python 3.8 when support for Python 3.7 is dropped in Airflow.
42
+ target-version = "py37"
43
+
44
+ extend-select = [
45
+ "I", # Missing required import (auto-fixable)
46
+ "UP", # Pyupgrade
47
+ "RUF100", # Unused noqa (auto-fixable)
48
+
49
+ # implicit single-line string concatenation
50
+ "ISC001",
51
+ # We ignore more pydocstyle than we enable, so be more selective at what we enable
52
+ "D101",
53
+ "D106",
54
+ "D2",
55
+ "D3",
56
+ # "D400", WIP: see #31135
57
+ # "D401", # Not enabled by ruff, but we don't want it
58
+ "D402",
59
+ "D403",
60
+ "D412",
61
+ "D419"
62
+ ]
63
+ extend-ignore = [
64
+ "D203",
65
+ "D205",
66
+ "D212",
67
+ "D213",
68
+ "D214",
69
+ "D215",
70
+ "E731",
71
+ ]
72
+
73
+ [tool.pytest.ini_options]
74
+ # * Disable `flaky` plugin for pytest. This plugin conflicts with `rerunfailures` because provide same marker.
75
+ # * Disable `nose` builtin plugin for pytest. This feature deprecated in 7.2 and will be removed in pytest>=8
76
+ # * And we focus on use native pytest capabilities rather than adopt another frameworks.
77
+ addopts = "-rasl --verbosity=2 -p no:flaky -p no:nose --asyncio-mode=strict"
78
+ norecursedirs = [
79
+ ".eggs",
80
+ "airflow",
81
+ "tests/dags_with_system_exit",
82
+ "tests/test_utils",
83
+ "tests/dags_corrupted",
84
+ "tests/dags",
85
+ "tests/system/providers/google/cloud/dataproc/resources",
86
+ "tests/system/providers/google/cloud/gcs/resources",
87
+ ]
88
+ log_level = "INFO"
89
+ filterwarnings = [
90
+ "error::pytest.PytestCollectionWarning",
91
+ "ignore::DeprecationWarning:flask_appbuilder.filemanager",
92
+ "ignore::DeprecationWarning:flask_appbuilder.widgets",
93
+ # https://github.com/dpgaspar/Flask-AppBuilder/pull/1940
94
+ "ignore::DeprecationWarning:flask_sqlalchemy",
95
+ # https://github.com/dpgaspar/Flask-AppBuilder/pull/1903
96
+ "ignore::DeprecationWarning:apispec.utils",
97
+ ]
98
+ python_files = [
99
+ "*.py",
100
+ ]
101
+ testpaths = [
102
+ "tests",
103
+ ]
104
+
105
+ [tool.ruff.isort]
106
+ known-first-party = ["airflow", "airflow_breeze", "docker_tests", "docs", "kubernetes_tests", "tests"]
107
+ required-imports = ["from __future__ import annotations"]
108
+ combine-as-imports = true
109
+
110
+ # TODO: for now, https://github.com/charliermarsh/ruff/issues/1817
111
+ known-third-party = [
112
+ "asana",
113
+ "atlassian",
114
+ "celery",
115
+ "cloudant",
116
+ "databricks",
117
+ "datadog",
118
+ "docker",
119
+ "elasticsearch",
120
+ "github",
121
+ "google",
122
+ "grpc",
123
+ "jenkins",
124
+ "mysql",
125
+ "neo4j",
126
+ "papermill",
127
+ "redis",
128
+ "sendgrid",
129
+ "snowflake",
130
+ "telegram",
131
+ "trino",
132
+ ]
133
+
134
+ [tool.ruff.per-file-ignores]
135
+ "airflow/models/__init__.py" = ["F401"]
136
+ "airflow/models/sqla_models.py" = ["F401"]
137
+
138
+
139
+ # The test_python.py is needed because adding __future__.annotations breaks runtime checks that are
140
+ # needed for the test to work
141
+ "tests/decorators/test_python.py" = ["I002"]
142
+
143
+ # The Pydantic representations of SqlAlchemy Models are not parsed well with Pydantic
144
+ # when __future__.annotations is used so we need to skip them from upgrading
145
+ "airflow/serialization/pydantic/*.py" = ["I002"]
146
+
147
+ # Ignore pydoc style from these
148
+ "*.pyi" = ["D"]
149
+ "tests/*" = ["D"]
150
+ "scripts/*" = ["D"]
151
+ "dev/*" = ["D"]
152
+ "docs/*" = ["D"]
153
+ "provider_packages/*" = ["D"]
154
+ "docker_tests/*" = ["D"]
155
+ "kubernetes_tests/*" = ["D"]
156
+ "*/example_dags/*" = ["D"]
157
+ "chart/*" = ["D"]
158
+
159
+ # All of the modules which have an extra license header (i.e. that we copy from another project) need to
160
+ # ignore E402 -- module level import not at top level
161
+ "airflow/api/auth/backend/kerberos_auth.py" = ["E402"]
162
+ "airflow/security/kerberos.py" = ["E402"]
163
+ "airflow/security/utils.py" = ["E402"]
164
+ "tests/providers/elasticsearch/log/elasticmock/__init__.py" = ["E402"]
165
+ "tests/providers/elasticsearch/log/elasticmock/utilities/__init__.py" = ["E402"]
@@ -27,7 +27,7 @@ classifiers =
27
27
  Programming Language :: Python :: 3.10
28
28
  Topic :: System :: Monitoring
29
29
  project_urls =
30
- Documentation=https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.2.0/
30
+ Documentation=https://airflow.apache.org/docs/apache-airflow-providers-zendesk/4.3.0/
31
31
  Bug Tracker=https://github.com/apache/airflow/issues
32
32
  Source Code=https://github.com/apache/airflow
33
33
  Slack Chat=https://s.apache.org/airflow-slack
@@ -46,7 +46,7 @@ setup_requires =
46
46
  setuptools
47
47
  wheel
48
48
  install_requires =
49
- apache-airflow>=2.3.0
49
+ apache-airflow>=2.4.0
50
50
  zenpy>=2.0.24
51
51
 
52
52
  [options.entry_points]
@@ -26,7 +26,7 @@
26
26
 
27
27
  from setuptools import find_namespace_packages, setup
28
28
 
29
- version = "4.2.0"
29
+ version = "4.3.0"
30
30
 
31
31
 
32
32
  def do_setup():
@@ -35,7 +35,12 @@ def do_setup():
35
35
  version=version,
36
36
  extras_require={},
37
37
  packages=find_namespace_packages(
38
- include=["airflow.providers.zendesk", "airflow.providers.zendesk.*"]
38
+ include=[
39
+ "airflow.providers.zendesk",
40
+ "airflow.providers.zendesk.*",
41
+ "airflow.providers.zendesk_vendor",
42
+ "airflow.providers.zendesk_vendor.*",
43
+ ],
39
44
  ),
40
45
  )
41
46
 
@@ -1,2 +0,0 @@
1
- apache-airflow>=2.3.0
2
- zenpy>=2.0.24
@@ -1,39 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
- [tool.black]
18
- line-length = 110
19
- target-version = ['py37', 'py38', 'py39', 'py310']
20
- # The build system section is needed in order to workaround the side-effect introduced by recent
21
- # setup tools version. The recent setuptools version update (64.0.0) broke paths of editable installations
22
- # and we have to pin it to 63.4.3 version
23
- # The problem is tracked (and this limitation might be removed if it is solved) in:
24
- # https://github.com/pypa/setuptools/issues/3548
25
- [build-system]
26
- requires = ['setuptools==63.4.3']
27
- build-backend = "setuptools.build_meta"
28
- [tool.isort]
29
- add_imports = ["from __future__ import annotations"]
30
- append_only = true
31
- line_length = 110
32
- combine_as_imports = true
33
- default_section = "THIRDPARTY"
34
- known_first_party = ["airflow", "airflow_breeze", "docker_tests", "docs", "kubernetes_tests", "tests"]
35
- # The test_python.py is needed because adding __future__.annotations breaks runtime checks that are
36
- # needed for the test to work
37
- skip = ["build", ".tox", "venv", "tests/decorators/test_python.py"]
38
- skip_glob = ["*.pyi"]
39
- profile = "black"