apache-airflow-providers-common-compat 1.7.2rc1__py3-none-any.whl → 1.7.3__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.
Potentially problematic release.
This version of apache-airflow-providers-common-compat might be problematic. Click here for more details.
- airflow/providers/common/compat/__init__.py +1 -1
- airflow/providers/common/compat/openlineage/check.py +2 -1
- {apache_airflow_providers_common_compat-1.7.2rc1.dist-info → apache_airflow_providers_common_compat-1.7.3.dist-info}/METADATA +11 -9
- {apache_airflow_providers_common_compat-1.7.2rc1.dist-info → apache_airflow_providers_common_compat-1.7.3.dist-info}/RECORD +6 -6
- {apache_airflow_providers_common_compat-1.7.2rc1.dist-info → apache_airflow_providers_common_compat-1.7.3.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_common_compat-1.7.2rc1.dist-info → apache_airflow_providers_common_compat-1.7.3.dist-info}/entry_points.txt +0 -0
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "1.7.
|
|
32
|
+
__version__ = "1.7.3"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.10.0"
|
|
@@ -20,6 +20,7 @@ from __future__ import annotations
|
|
|
20
20
|
import functools
|
|
21
21
|
import logging
|
|
22
22
|
from importlib import metadata
|
|
23
|
+
from typing import Any
|
|
23
24
|
|
|
24
25
|
from packaging.version import Version
|
|
25
26
|
|
|
@@ -29,7 +30,7 @@ log = logging.getLogger(__name__)
|
|
|
29
30
|
|
|
30
31
|
|
|
31
32
|
def require_openlineage_version(
|
|
32
|
-
provider_min_version: str | None = None, client_min_version: str | None = None
|
|
33
|
+
provider_min_version: str | None | Any = None, client_min_version: str | None = None
|
|
33
34
|
):
|
|
34
35
|
"""
|
|
35
36
|
Enforce minimum version requirements for OpenLineage provider or client.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-common-compat
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.3
|
|
4
4
|
Summary: Provider package apache-airflow-providers-common-compat for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,common.compat,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
7
7
|
Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
8
|
-
Requires-Python:
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Environment :: Console
|
|
@@ -18,13 +18,14 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Topic :: System :: Monitoring
|
|
22
|
-
Requires-Dist: apache-airflow>=2.10.
|
|
23
|
+
Requires-Dist: apache-airflow>=2.10.0
|
|
23
24
|
Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
|
|
24
25
|
Requires-Dist: apache-airflow-providers-standard ; extra == "standard"
|
|
25
26
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
26
|
-
Project-URL: Changelog, https://airflow.
|
|
27
|
-
Project-URL: Documentation, https://airflow.
|
|
27
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.3/changelog.html
|
|
28
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.3
|
|
28
29
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
29
30
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
30
31
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -57,8 +58,9 @@ Provides-Extra: standard
|
|
|
57
58
|
|
|
58
59
|
Package ``apache-airflow-providers-common-compat``
|
|
59
60
|
|
|
60
|
-
Release: ``1.7.
|
|
61
|
+
Release: ``1.7.3``
|
|
61
62
|
|
|
63
|
+
Release Date: ``|PypiReleaseDate|``
|
|
62
64
|
|
|
63
65
|
Common Compatibility Provider - providing compatibility code for previous Airflow versions
|
|
64
66
|
|
|
@@ -70,7 +72,7 @@ This is a provider package for ``common.compat`` provider. All classes for this
|
|
|
70
72
|
are in ``airflow.providers.common.compat`` python package.
|
|
71
73
|
|
|
72
74
|
You can find package information and changelog for the provider
|
|
73
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.
|
|
75
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.3/>`_.
|
|
74
76
|
|
|
75
77
|
Installation
|
|
76
78
|
------------
|
|
@@ -79,7 +81,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
|
79
81
|
for the minimum Airflow version supported) via
|
|
80
82
|
``pip install apache-airflow-providers-common-compat``
|
|
81
83
|
|
|
82
|
-
The package supports the following python versions: 3.10,3.11,3.12
|
|
84
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
|
83
85
|
|
|
84
86
|
Requirements
|
|
85
87
|
------------
|
|
@@ -111,5 +113,5 @@ Dependent package
|
|
|
111
113
|
============================================================================================================== ===============
|
|
112
114
|
|
|
113
115
|
The changelog for the provider package can be found in the
|
|
114
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.
|
|
116
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-common-compat/1.7.3/changelog.html>`_.
|
|
115
117
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
airflow/providers/common/compat/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/common/compat/__init__.py,sha256=
|
|
2
|
+
airflow/providers/common/compat/__init__.py,sha256=bLk3lPB9BLOyQTbekRznofNoYKYS8GA5ljqrloDbHUU,1502
|
|
3
3
|
airflow/providers/common/compat/check.py,sha256=d6at8iFn_c2jbnmvswoMYz1DFUrAbQTVKMCA5PYAOrQ,4347
|
|
4
4
|
airflow/providers/common/compat/get_provider_info.py,sha256=BfscTzSrq5WxqTt4njI9WwvWyvE3JjYYfZEdrSRT6IU,1555
|
|
5
5
|
airflow/providers/common/compat/version_compat.py,sha256=4f4HIVNU9aCzHJO2HlKkm0nlr2gpIGmcLI46LeMqpBk,1805
|
|
@@ -9,7 +9,7 @@ airflow/providers/common/compat/lineage/entities.py,sha256=otob45spY8YSa5fMx3XXg
|
|
|
9
9
|
airflow/providers/common/compat/lineage/hook.py,sha256=L3kOTptvjmeH2aN-EieAbNfIBVUQvR9_etrI2gXF0Cc,3157
|
|
10
10
|
airflow/providers/common/compat/notifier/__init__.py,sha256=ENJCBUjdRT68heVSfI8fhMs4hi6bUh5CYUkQTwTaqxM,1189
|
|
11
11
|
airflow/providers/common/compat/openlineage/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
12
|
-
airflow/providers/common/compat/openlineage/check.py,sha256=
|
|
12
|
+
airflow/providers/common/compat/openlineage/check.py,sha256=Vh73HcOSY__fDkeFs1SwD20tOWIu_yG66sdQrujKa4I,4701
|
|
13
13
|
airflow/providers/common/compat/openlineage/facet.py,sha256=_3YHsRP39vx6FPePFQCLjNHP9kzisNH5v97o-PWzwLk,6529
|
|
14
14
|
airflow/providers/common/compat/openlineage/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
|
|
15
15
|
airflow/providers/common/compat/openlineage/utils/spark.py,sha256=yyybMD8Nrts0LpjkjyO7DPh3gW1bd0gzkAdpyTbvOsM,2172
|
|
@@ -21,7 +21,7 @@ airflow/providers/common/compat/standard/__init__.py,sha256=9hdXHABrVpkbpjZgUft3
|
|
|
21
21
|
airflow/providers/common/compat/standard/operators.py,sha256=ejCz6PrgEWfHrHVNCqs7eEX1p1SwSnBnAr2mxjqR3VE,1811
|
|
22
22
|
airflow/providers/common/compat/standard/triggers.py,sha256=XBi9KE-cAY_TlIyKVqr1-EU7xZNqgCVTugXZObV3gaQ,1177
|
|
23
23
|
airflow/providers/common/compat/standard/utils.py,sha256=SvTXThqYRKVfmRRpq-D5eNcxQjY9TESrTyl3n670QM8,1289
|
|
24
|
-
apache_airflow_providers_common_compat-1.7.
|
|
25
|
-
apache_airflow_providers_common_compat-1.7.
|
|
26
|
-
apache_airflow_providers_common_compat-1.7.
|
|
27
|
-
apache_airflow_providers_common_compat-1.7.
|
|
24
|
+
apache_airflow_providers_common_compat-1.7.3.dist-info/entry_points.txt,sha256=OdOClAuY8E82VvA-Zo6narFujtXdGihHKZH2HfmlPIo,109
|
|
25
|
+
apache_airflow_providers_common_compat-1.7.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
26
|
+
apache_airflow_providers_common_compat-1.7.3.dist-info/METADATA,sha256=InydbTAc4CZ10g538jYnA_O126Q-FG_nNSfHnsuKv8U,5319
|
|
27
|
+
apache_airflow_providers_common_compat-1.7.3.dist-info/RECORD,,
|
|
File without changes
|