apache-airflow-providers-exasol 4.6.1rc1__py3-none-any.whl → 4.7.0rc1__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-exasol might be problematic. Click here for more details.
- airflow/providers/exasol/__init__.py +3 -3
- airflow/providers/exasol/get_provider_info.py +3 -2
- airflow/providers/exasol/hooks/exasol.py +2 -1
- airflow/providers/exasol/operators/exasol.py +2 -1
- {apache_airflow_providers_exasol-4.6.1rc1.dist-info → apache_airflow_providers_exasol-4.7.0rc1.dist-info}/METADATA +9 -11
- apache_airflow_providers_exasol-4.7.0rc1.dist-info/RECORD +11 -0
- apache_airflow_providers_exasol-4.6.1rc1.dist-info/RECORD +0 -11
- {apache_airflow_providers_exasol-4.6.1rc1.dist-info → apache_airflow_providers_exasol-4.7.0rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_exasol-4.6.1rc1.dist-info → apache_airflow_providers_exasol-4.7.0rc1.dist-info}/entry_points.txt +0 -0
|
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "4.
|
|
32
|
+
__version__ = "4.7.0"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
|
-
"2.
|
|
35
|
+
"2.9.0"
|
|
36
36
|
):
|
|
37
37
|
raise RuntimeError(
|
|
38
|
-
f"The package `apache-airflow-providers-exasol:{__version__}` needs Apache Airflow 2.
|
|
38
|
+
f"The package `apache-airflow-providers-exasol:{__version__}` needs Apache Airflow 2.9.0+"
|
|
39
39
|
)
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Exasol",
|
|
29
29
|
"description": "`Exasol <https://www.exasol.com/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1734533771,
|
|
32
32
|
"versions": [
|
|
33
|
+
"4.7.0",
|
|
33
34
|
"4.6.1",
|
|
34
35
|
"4.6.0",
|
|
35
36
|
"4.5.3",
|
|
@@ -66,7 +67,7 @@ def get_provider_info():
|
|
|
66
67
|
"1.0.0",
|
|
67
68
|
],
|
|
68
69
|
"dependencies": [
|
|
69
|
-
"apache-airflow>=2.
|
|
70
|
+
"apache-airflow>=2.9.0",
|
|
70
71
|
"apache-airflow-providers-common-sql>=1.20.0",
|
|
71
72
|
"pyexasol>=0.5.1",
|
|
72
73
|
'pandas>=2.1.2,<2.2;python_version>="3.9"',
|
|
@@ -17,8 +17,9 @@
|
|
|
17
17
|
# under the License.
|
|
18
18
|
from __future__ import annotations
|
|
19
19
|
|
|
20
|
+
from collections.abc import Iterable, Mapping, Sequence
|
|
20
21
|
from contextlib import closing
|
|
21
|
-
from typing import TYPE_CHECKING, Any, Callable,
|
|
22
|
+
from typing import TYPE_CHECKING, Any, Callable, TypeVar, overload
|
|
22
23
|
|
|
23
24
|
import pyexasol
|
|
24
25
|
from pyexasol import ExaConnection, ExaStatement
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
# under the License.
|
|
18
18
|
from __future__ import annotations
|
|
19
19
|
|
|
20
|
-
from
|
|
20
|
+
from collections.abc import Sequence
|
|
21
|
+
from typing import ClassVar
|
|
21
22
|
|
|
22
23
|
from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
|
|
23
24
|
from airflow.providers.exasol.hooks.exasol import exasol_fetch_all_handler
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: apache-airflow-providers-exasol
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.7.0rc1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-exasol for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,exasol,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -21,19 +21,17 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Topic :: System :: Monitoring
|
|
23
23
|
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
|
|
24
|
-
Requires-Dist: apache-airflow>=2.
|
|
24
|
+
Requires-Dist: apache-airflow>=2.9.0rc0
|
|
25
25
|
Requires-Dist: pandas>=1.5.3,<2.2;python_version<"3.9"
|
|
26
26
|
Requires-Dist: pandas>=2.1.2,<2.2;python_version>="3.9"
|
|
27
27
|
Requires-Dist: pyexasol>=0.5.1
|
|
28
|
-
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common-sql"
|
|
29
28
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
30
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.
|
|
31
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.
|
|
29
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.0/changelog.html
|
|
30
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.0
|
|
32
31
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
33
32
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
34
|
-
Project-URL: Twitter, https://
|
|
33
|
+
Project-URL: Twitter, https://x.com/ApacheAirflow
|
|
35
34
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
36
|
-
Provides-Extra: common-sql
|
|
37
35
|
|
|
38
36
|
|
|
39
37
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
@@ -79,7 +77,7 @@ Provides-Extra: common-sql
|
|
|
79
77
|
|
|
80
78
|
Package ``apache-airflow-providers-exasol``
|
|
81
79
|
|
|
82
|
-
Release: ``4.
|
|
80
|
+
Release: ``4.7.0.rc1``
|
|
83
81
|
|
|
84
82
|
|
|
85
83
|
`Exasol <https://www.exasol.com/>`__
|
|
@@ -92,7 +90,7 @@ This is a provider package for ``exasol`` provider. All classes for this provide
|
|
|
92
90
|
are in ``airflow.providers.exasol`` python package.
|
|
93
91
|
|
|
94
92
|
You can find package information and changelog for the provider
|
|
95
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.
|
|
93
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.0/>`_.
|
|
96
94
|
|
|
97
95
|
Installation
|
|
98
96
|
------------
|
|
@@ -109,7 +107,7 @@ Requirements
|
|
|
109
107
|
======================================= =========================================
|
|
110
108
|
PIP package Version required
|
|
111
109
|
======================================= =========================================
|
|
112
|
-
``apache-airflow`` ``>=2.
|
|
110
|
+
``apache-airflow`` ``>=2.9.0``
|
|
113
111
|
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
114
112
|
``pyexasol`` ``>=0.5.1``
|
|
115
113
|
``pandas`` ``>=2.1.2,<2.2; python_version >= "3.9"``
|
|
@@ -136,4 +134,4 @@ Dependent package
|
|
|
136
134
|
============================================================================================================ ==============
|
|
137
135
|
|
|
138
136
|
The changelog for the provider package can be found in the
|
|
139
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.
|
|
137
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.7.0/changelog.html>`_.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
airflow/providers/exasol/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
+
airflow/providers/exasol/__init__.py,sha256=daA4_hbq2zPNWDTOmeGAGv9Bmyhy9sSKzZIUcs-9pwM,1493
|
|
3
|
+
airflow/providers/exasol/get_provider_info.py,sha256=gLE0rskk4a8l2sfND6dvRVxlF2xICVvhpQFRJVwsNIg,3118
|
|
4
|
+
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
+
airflow/providers/exasol/hooks/exasol.py,sha256=H0Iq6QpzxkhVaD3-BPiDJTTT8kCzK1tM7MqekiJvguw,11957
|
|
6
|
+
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
+
airflow/providers/exasol/operators/exasol.py,sha256=A4P3Qo65RJzrSVEgSNwPbJ2BSA9OsitmFm8kutyxVfw,2500
|
|
8
|
+
apache_airflow_providers_exasol-4.7.0rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
+
apache_airflow_providers_exasol-4.7.0rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
10
|
+
apache_airflow_providers_exasol-4.7.0rc1.dist-info/METADATA,sha256=Gppo__tLIR-XTUF0Y_TgA22622-wmycgesv60DYJYjo,6302
|
|
11
|
+
apache_airflow_providers_exasol-4.7.0rc1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
airflow/providers/exasol/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
-
airflow/providers/exasol/__init__.py,sha256=y3TXPZoR8-ld1RC-lTVh3ndq3sM1F1syj_GTGPrgdU0,1493
|
|
3
|
-
airflow/providers/exasol/get_provider_info.py,sha256=6mO8AgGCkYNTviBTdBnRIH4IoqIEvlvFZ8R95ysD6VE,3097
|
|
4
|
-
airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
|
-
airflow/providers/exasol/hooks/exasol.py,sha256=NF-dEwu79EQtqVnC2629BWm8z9ONQ-PUuOJzCFQFGp8,11930
|
|
6
|
-
airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
7
|
-
airflow/providers/exasol/operators/exasol.py,sha256=rZXuz65xJIBLNxnrx8pVp3tYAHhSgLPe7mvf79mWck8,2473
|
|
8
|
-
apache_airflow_providers_exasol-4.6.1rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
|
|
9
|
-
apache_airflow_providers_exasol-4.6.1rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
10
|
-
apache_airflow_providers_exasol-4.6.1rc1.dist-info/METADATA,sha256=o0uwhcYlrGYoaCLcFA9rFHpN5ZqX4YXS-1anltUmQF0,6410
|
|
11
|
-
apache_airflow_providers_exasol-4.6.1rc1.dist-info/RECORD,,
|
|
File without changes
|