apache-airflow-providers-openlineage 2.1.2rc2__py3-none-any.whl → 2.1.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-openlineage might be problematic. Click here for more details.
- airflow/providers/openlineage/__init__.py +1 -1
- airflow/providers/openlineage/get_provider_info.py +0 -41
- airflow/providers/openlineage/utils/utils.py +2 -1
- {apache_airflow_providers_openlineage-2.1.2rc2.dist-info → apache_airflow_providers_openlineage-2.1.3.dist-info}/METADATA +9 -9
- {apache_airflow_providers_openlineage-2.1.2rc2.dist-info → apache_airflow_providers_openlineage-2.1.3.dist-info}/RECORD +7 -7
- {apache_airflow_providers_openlineage-2.1.2rc2.dist-info → apache_airflow_providers_openlineage-2.1.3.dist-info}/WHEEL +1 -1
- {apache_airflow_providers_openlineage-2.1.2rc2.dist-info → apache_airflow_providers_openlineage-2.1.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__ = "2.1.
|
|
32
|
+
__version__ = "2.1.3"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.9.0"
|
|
@@ -26,38 +26,6 @@ def get_provider_info():
|
|
|
26
26
|
"package-name": "apache-airflow-providers-openlineage",
|
|
27
27
|
"name": "OpenLineage Airflow",
|
|
28
28
|
"description": "`OpenLineage <https://openlineage.io/>`__\n",
|
|
29
|
-
"state": "ready",
|
|
30
|
-
"source-date-epoch": 1743477859,
|
|
31
|
-
"versions": [
|
|
32
|
-
"2.1.2",
|
|
33
|
-
"2.1.1",
|
|
34
|
-
"2.1.0",
|
|
35
|
-
"2.0.0",
|
|
36
|
-
"1.14.0",
|
|
37
|
-
"1.13.0",
|
|
38
|
-
"1.12.2",
|
|
39
|
-
"1.12.1",
|
|
40
|
-
"1.12.0",
|
|
41
|
-
"1.11.0",
|
|
42
|
-
"1.10.0",
|
|
43
|
-
"1.9.1",
|
|
44
|
-
"1.9.0",
|
|
45
|
-
"1.8.0",
|
|
46
|
-
"1.7.1",
|
|
47
|
-
"1.7.0",
|
|
48
|
-
"1.6.0",
|
|
49
|
-
"1.5.0",
|
|
50
|
-
"1.4.0",
|
|
51
|
-
"1.3.1",
|
|
52
|
-
"1.3.0",
|
|
53
|
-
"1.2.1",
|
|
54
|
-
"1.2.0",
|
|
55
|
-
"1.1.1",
|
|
56
|
-
"1.1.0",
|
|
57
|
-
"1.0.2",
|
|
58
|
-
"1.0.1",
|
|
59
|
-
"1.0.0",
|
|
60
|
-
],
|
|
61
29
|
"integrations": [
|
|
62
30
|
{
|
|
63
31
|
"integration-name": "OpenLineage",
|
|
@@ -184,13 +152,4 @@ def get_provider_info():
|
|
|
184
152
|
},
|
|
185
153
|
}
|
|
186
154
|
},
|
|
187
|
-
"dependencies": [
|
|
188
|
-
"apache-airflow>=2.9.0",
|
|
189
|
-
"apache-airflow-providers-common-sql>=1.20.0",
|
|
190
|
-
"apache-airflow-providers-common-compat>=1.4.0",
|
|
191
|
-
"attrs>=22.2",
|
|
192
|
-
"openlineage-integration-common>=1.24.2",
|
|
193
|
-
"openlineage-python>=1.24.2",
|
|
194
|
-
],
|
|
195
|
-
"devel-dependencies": ["uuid6>=2024.7.10"],
|
|
196
155
|
}
|
|
@@ -372,6 +372,8 @@ class DagRunInfo(InfoJsonEncodable):
|
|
|
372
372
|
"data_interval_start",
|
|
373
373
|
"data_interval_end",
|
|
374
374
|
"external_trigger", # Removed in Airflow 3, use run_type instead
|
|
375
|
+
"logical_date", # Airflow 3
|
|
376
|
+
"run_after", # Airflow 3
|
|
375
377
|
"run_id",
|
|
376
378
|
"run_type",
|
|
377
379
|
"start_date",
|
|
@@ -442,7 +444,6 @@ class TaskInfo(InfoJsonEncodable):
|
|
|
442
444
|
"upstream_task_ids",
|
|
443
445
|
"wait_for_downstream",
|
|
444
446
|
"wait_for_past_depends_before_skipping",
|
|
445
|
-
"weight_rule",
|
|
446
447
|
]
|
|
447
448
|
casts = {
|
|
448
449
|
"operator_class": lambda task: task.task_type,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-airflow-providers-openlineage
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.3
|
|
4
4
|
Summary: Provider package apache-airflow-providers-openlineage for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,openlineage,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -20,15 +20,15 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
|
-
Requires-Dist: apache-airflow>=2.9.
|
|
24
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.20.
|
|
25
|
-
Requires-Dist: apache-airflow-providers-common-compat>=1.4.
|
|
23
|
+
Requires-Dist: apache-airflow>=2.9.0
|
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
25
|
+
Requires-Dist: apache-airflow-providers-common-compat>=1.4.0
|
|
26
26
|
Requires-Dist: attrs>=22.2
|
|
27
27
|
Requires-Dist: openlineage-integration-common>=1.24.2
|
|
28
28
|
Requires-Dist: openlineage-python>=1.24.2
|
|
29
29
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
30
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html
|
|
31
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3
|
|
32
32
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
|
33
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
34
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
@@ -59,7 +59,7 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
|
59
59
|
|
|
60
60
|
Package ``apache-airflow-providers-openlineage``
|
|
61
61
|
|
|
62
|
-
Release: ``2.1.
|
|
62
|
+
Release: ``2.1.3``
|
|
63
63
|
|
|
64
64
|
|
|
65
65
|
`OpenLineage <https://openlineage.io/>`__
|
|
@@ -72,7 +72,7 @@ This is a provider package for ``openlineage`` provider. All classes for this pr
|
|
|
72
72
|
are in ``airflow.providers.openlineage`` python package.
|
|
73
73
|
|
|
74
74
|
You can find package information and changelog for the provider
|
|
75
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
75
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/>`_.
|
|
76
76
|
|
|
77
77
|
Installation
|
|
78
78
|
------------
|
|
@@ -118,5 +118,5 @@ Dependent package
|
|
|
118
118
|
================================================================================================================== =================
|
|
119
119
|
|
|
120
120
|
The changelog for the provider package can be found in the
|
|
121
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.
|
|
121
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-openlineage/2.1.3/changelog.html>`_.
|
|
122
122
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
airflow/providers/openlineage/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
|
2
|
-
airflow/providers/openlineage/__init__.py,sha256=
|
|
2
|
+
airflow/providers/openlineage/__init__.py,sha256=R6VkEEY6inOTMg3aCbbydjy-qIpvgikyWt7OGFyLts4,1498
|
|
3
3
|
airflow/providers/openlineage/conf.py,sha256=aYdLU7iHBdGIU8ZAC5iUiIDgXP9gvP9r_z5hTAbXPOU,5535
|
|
4
|
-
airflow/providers/openlineage/get_provider_info.py,sha256=
|
|
4
|
+
airflow/providers/openlineage/get_provider_info.py,sha256=108mAg-tdcTBmPYwJ9M3wcmhc-i1bAs5OB2MLnSBA-4,9256
|
|
5
5
|
airflow/providers/openlineage/sqlparser.py,sha256=N38XhkU-lxwxnYevQpq63JOBi4rzp0q56JjxO3H24W8,20340
|
|
6
6
|
airflow/providers/openlineage/version_compat.py,sha256=aHg90_DtgoSnQvILFICexMyNlHlALBdaeWqkX3dFDug,1605
|
|
7
7
|
airflow/providers/openlineage/extractors/__init__.py,sha256=I0X4f6zUniclyD9zT0DFHRImpCpJVP4MkPJT3cd7X5I,1081
|
|
@@ -25,8 +25,8 @@ airflow/providers/openlineage/utils/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL
|
|
|
25
25
|
airflow/providers/openlineage/utils/selective_enable.py,sha256=YyrUQ7Djv5o46XdH83N_G8AXAZ9C_aKPa534pbNVp08,3441
|
|
26
26
|
airflow/providers/openlineage/utils/spark.py,sha256=-2XfUaV0WISK6vHSBmB9E78xkuPjO3fM1tDQCZG7j9I,7303
|
|
27
27
|
airflow/providers/openlineage/utils/sql.py,sha256=vkKrrdENEMVG8gtzV6yuTXMa2Z9fBAEXmxDVIDaVncI,9571
|
|
28
|
-
airflow/providers/openlineage/utils/utils.py,sha256=
|
|
29
|
-
apache_airflow_providers_openlineage-2.1.
|
|
30
|
-
apache_airflow_providers_openlineage-2.1.
|
|
31
|
-
apache_airflow_providers_openlineage-2.1.
|
|
32
|
-
apache_airflow_providers_openlineage-2.1.
|
|
28
|
+
airflow/providers/openlineage/utils/utils.py,sha256=_TP49gO4GeyXqqqRgYY-7bgNaM1cczLTv-3lQFGLMfM,29329
|
|
29
|
+
apache_airflow_providers_openlineage-2.1.3.dist-info/entry_points.txt,sha256=GAx0_i2OeZzqaiiiYuA-xchICDXiCT5kVqpKSxsOjt4,214
|
|
30
|
+
apache_airflow_providers_openlineage-2.1.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
31
|
+
apache_airflow_providers_openlineage-2.1.3.dist-info/METADATA,sha256=4KKyiTnqidPb-eRmkd_CrEQwi0r6iW98e51OF26xzfM,5685
|
|
32
|
+
apache_airflow_providers_openlineage-2.1.3.dist-info/RECORD,,
|