apache-airflow-providers-exasol 4.8.1rc1__py3-none-any.whl → 4.8.2rc1__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.

@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "4.8.1"
32
+ __version__ = "4.8.2"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.10.0"
@@ -59,8 +59,7 @@ class ExasolHook(DbApiHook):
59
59
  self.schema = kwargs.pop("schema", None)
60
60
 
61
61
  def get_conn(self) -> ExaConnection:
62
- conn_id = self.get_conn_id()
63
- conn = self.get_connection(conn_id)
62
+ conn = self.get_connection(self.get_conn_id())
64
63
  conn_args = {
65
64
  "dsn": f"{conn.host}:{conn.port}",
66
65
  "user": conn.login,
@@ -199,7 +198,7 @@ class ExasolHook(DbApiHook):
199
198
  )
200
199
  return cols
201
200
 
202
- @overload # type: ignore[override]
201
+ @overload
203
202
  def run(
204
203
  self,
205
204
  sql: str | Iterable[str],
@@ -268,9 +267,8 @@ class ExasolHook(DbApiHook):
268
267
  self.log.info("Running statement: %s, parameters: %s", sql_statement, parameters)
269
268
  with closing(conn.execute(sql_statement, parameters)) as exa_statement:
270
269
  if handler is not None:
271
- result = self._make_common_data_structure( # type: ignore[attr-defined]
272
- handler(exa_statement)
273
- )
270
+ result = self._make_common_data_structure(handler(exa_statement))
271
+
274
272
  if return_single_query_results(sql, return_last, split_statements):
275
273
  _last_result = result
276
274
  _last_columns = self.get_description(exa_statement)
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-exasol
3
- Version: 4.8.1rc1
3
+ Version: 4.8.2rc1
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>
7
7
  Maintainer-email: Apache Software Foundation <dev@airflow.apache.org>
8
- Requires-Python: ~=3.10
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,6 +18,7 @@ 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
23
  Requires-Dist: apache-airflow>=2.10.0rc1
23
24
  Requires-Dist: apache-airflow-providers-common-sql>=1.26.0rc1
@@ -25,8 +26,8 @@ Requires-Dist: pyexasol>=0.26.0
25
26
  Requires-Dist: pandas>=2.1.2; python_version <"3.13"
26
27
  Requires-Dist: pandas>=2.2.3; python_version >="3.13"
27
28
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
28
- Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.8.1/changelog.html
29
- Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.8.1
29
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.8.2/changelog.html
30
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-exasol/4.8.2
30
31
  Project-URL: Mastodon, https://fosstodon.org/@airflow
31
32
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
32
33
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -57,8 +58,9 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
57
58
 
58
59
  Package ``apache-airflow-providers-exasol``
59
60
 
60
- Release: ``4.8.1``
61
+ Release: ``4.8.2``
61
62
 
63
+ Release Date: ``|PypiReleaseDate|``
62
64
 
63
65
  `Exasol <https://www.exasol.com/>`__
64
66
 
@@ -70,7 +72,7 @@ This is a provider package for ``exasol`` provider. All classes for this provide
70
72
  are in ``airflow.providers.exasol`` 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-exasol/4.8.1/>`_.
75
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.2/>`_.
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-exasol``
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
  ------------
@@ -114,5 +116,5 @@ Dependent package
114
116
  ============================================================================================================ ==============
115
117
 
116
118
  The changelog for the provider package can be found in the
117
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.1/changelog.html>`_.
119
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-exasol/4.8.2/changelog.html>`_.
118
120
 
@@ -1,11 +1,11 @@
1
1
  airflow/providers/exasol/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/exasol/__init__.py,sha256=KFtCg32adKfkwAhYnnnmonmHwVogCP1JoNqT1_SAhGA,1495
2
+ airflow/providers/exasol/__init__.py,sha256=D_gu1Fw81Rv2BJuOoaF_8tg4YRj5Yrj1J62OdSP2W-k,1495
3
3
  airflow/providers/exasol/get_provider_info.py,sha256=uupz_ak2p7d1WTyVzKAFgaWsvNlCMYuMT892FXqytWA,1980
4
4
  airflow/providers/exasol/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
5
- airflow/providers/exasol/hooks/exasol.py,sha256=oEAcNq1h4NkGRig4ZsGinYwEyBuGkggwY52gSa90oKo,13007
5
+ airflow/providers/exasol/hooks/exasol.py,sha256=Rw6t3gMg52QFSKa_A3Ta4X_vnqJRfiPyBUtfQMuR6W0,12872
6
6
  airflow/providers/exasol/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
7
7
  airflow/providers/exasol/operators/exasol.py,sha256=A4P3Qo65RJzrSVEgSNwPbJ2BSA9OsitmFm8kutyxVfw,2500
8
- apache_airflow_providers_exasol-4.8.1rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
9
- apache_airflow_providers_exasol-4.8.1rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
10
- apache_airflow_providers_exasol-4.8.1rc1.dist-info/METADATA,sha256=tdNPLhfuKv1-OWBEqKEVGkXbCQs5F-BexAdiS22Fi84,5396
11
- apache_airflow_providers_exasol-4.8.1rc1.dist-info/RECORD,,
8
+ apache_airflow_providers_exasol-4.8.2rc1.dist-info/entry_points.txt,sha256=8pvKoFs3wCXkl3x0a5dzqvTonx17I8zD8oodM_M386Q,102
9
+ apache_airflow_providers_exasol-4.8.2rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
10
+ apache_airflow_providers_exasol-4.8.2rc1.dist-info/METADATA,sha256=wdhuSAdOBEk4ROV_cJpEvIa4xKGkjEre23-52UjC9q4,5488
11
+ apache_airflow_providers_exasol-4.8.2rc1.dist-info/RECORD,,