apache-airflow-providers-mysql 6.3.3__py3-none-any.whl → 6.3.4rc1__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.
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "6.3.3"
32
+ __version__ = "6.3.4"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
35
  "2.10.0"
@@ -378,6 +378,8 @@ class MySqlHook(DbApiHook):
378
378
  # Determine URI prefix based on client
379
379
  if client_name == "mysql-connector-python":
380
380
  uri_prefix = "mysql+mysqlconnector://"
381
+ elif client_name == "pymysql":
382
+ uri_prefix = "mysql+pymysql://"
381
383
  else: # default: mysqlclient
382
384
  uri_prefix = "mysql://"
383
385
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-mysql
3
- Version: 6.3.3
3
+ Version: 6.3.4rc1
4
4
  Summary: Provider package apache-airflow-providers-mysql for Apache Airflow
5
5
  Keywords: airflow-provider,mysql,airflow,integration
6
6
  Author-email: Apache Software Foundation <dev@airflow.apache.org>
@@ -20,10 +20,10 @@ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: System :: Monitoring
23
- Requires-Dist: apache-airflow>=2.10.0
24
- Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
23
+ Requires-Dist: apache-airflow>=2.10.0rc1
24
+ Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc1
25
25
  Requires-Dist: mysqlclient>=2.2.5; sys_platform != "darwin"
26
- Requires-Dist: mysql-connector-python>=9.0.0
26
+ Requires-Dist: mysql-connector-python>=9.1.0
27
27
  Requires-Dist: aiomysql>=0.2.0
28
28
  Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
29
29
  Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
@@ -31,8 +31,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
31
31
  Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
32
32
  Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
33
33
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
34
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.3/changelog.html
35
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.3
34
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-mysql/6.3.4/changelog.html
35
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-mysql/6.3.4
36
36
  Project-URL: Mastodon, https://fosstodon.org/@airflow
37
37
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
38
38
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -69,9 +69,8 @@ Provides-Extra: vertica
69
69
 
70
70
  Package ``apache-airflow-providers-mysql``
71
71
 
72
- Release: ``6.3.3``
72
+ Release: ``6.3.4``
73
73
 
74
- Release Date: ``|PypiReleaseDate|``
75
74
 
76
75
  `MySQL <https://www.mysql.com/>`__
77
76
 
@@ -83,12 +82,12 @@ This is a provider package for ``mysql`` provider. All classes for this provider
83
82
  are in ``airflow.providers.mysql`` python package.
84
83
 
85
84
  You can find package information and changelog for the provider
86
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.3/>`_.
85
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.4/>`_.
87
86
 
88
87
  Installation
89
88
  ------------
90
89
 
91
- You can install this package on top of an existing Airflow 2 installation (see ``Requirements`` below
90
+ You can install this package on top of an existing Airflow installation (see ``Requirements`` below
92
91
  for the minimum Airflow version supported) via
93
92
  ``pip install apache-airflow-providers-mysql``
94
93
 
@@ -103,7 +102,7 @@ PIP package Version required
103
102
  ``apache-airflow`` ``>=2.10.0``
104
103
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
105
104
  ``mysqlclient`` ``>=2.2.5; sys_platform != "darwin"``
106
- ``mysql-connector-python`` ``>=9.0.0``
105
+ ``mysql-connector-python`` ``>=9.1.0``
107
106
  ``aiomysql`` ``>=0.2.0``
108
107
  ======================================= =====================================
109
108
 
@@ -132,5 +131,5 @@ Dependent package
132
131
  ============================================================================================================== ===============
133
132
 
134
133
  The changelog for the provider package can be found in the
135
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.3/changelog.html>`_.
134
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.4/changelog.html>`_.
136
135
 
@@ -1,17 +1,17 @@
1
1
  airflow/providers/mysql/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/mysql/__init__.py,sha256=Gbz6tOUWH163N_NRsb_xRItTzJM6E_UAy_U9mfXqlzc,1494
2
+ airflow/providers/mysql/__init__.py,sha256=V0IZ2AFAPyAcNMu5LSWUKpKAAJZ6_XM9z1u1Xngl6pg,1494
3
3
  airflow/providers/mysql/get_provider_info.py,sha256=LNQZ8O48srWzGjS8mzLeAsa-VFGFY6ypkHK1jjr6umc,3064
4
4
  airflow/providers/mysql/version_compat.py,sha256=k18iZM_Hg0KlMrY6A4-xm9PJWJ6uxnicgYkzXySF78Y,1332
5
5
  airflow/providers/mysql/assets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
6
6
  airflow/providers/mysql/assets/mysql.py,sha256=ORHZmCa1AZAWwpF7GKH-8faqOKSohJvKtqRgfDnQRRc,1385
7
7
  airflow/providers/mysql/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
8
- airflow/providers/mysql/hooks/mysql.py,sha256=4uKMs31EunlLpHADTy0CcoFtXefYR6EF5VO21uYC3KA,16429
8
+ airflow/providers/mysql/hooks/mysql.py,sha256=_9EEpFHEUfs1A79bTMVdz1bK1F8bAtY0EFnSWdM5N1M,16512
9
9
  airflow/providers/mysql/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
10
10
  airflow/providers/mysql/transfers/presto_to_mysql.py,sha256=44o2DMZd_vwpKeM1kRoa2q8oJxeYXy3cuylCyIf99yU,3482
11
11
  airflow/providers/mysql/transfers/s3_to_mysql.py,sha256=3IIrmNkDWHJ8GbTABWQ26hPJdQUinrF8NFZXMavwDaI,4089
12
12
  airflow/providers/mysql/transfers/trino_to_mysql.py,sha256=LVXVWFQzju7lZl-GCIevjto0ZQqKv3H8loWfDv8wcWY,3464
13
13
  airflow/providers/mysql/transfers/vertica_to_mysql.py,sha256=L0ZMJgqE5ULwYqhVLxc6yXUyS50rhy4lSFF9reEOkGw,6974
14
- apache_airflow_providers_mysql-6.3.3.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
15
- apache_airflow_providers_mysql-6.3.3.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
16
- apache_airflow_providers_mysql-6.3.3.dist-info/METADATA,sha256=zsrJD6SDya0lpNd1k1KZb9a8G2kVkswv2u6-EVCa-lA,6555
17
- apache_airflow_providers_mysql-6.3.3.dist-info/RECORD,,
14
+ apache_airflow_providers_mysql-6.3.4rc1.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
15
+ apache_airflow_providers_mysql-6.3.4rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
16
+ apache_airflow_providers_mysql-6.3.4rc1.dist-info/METADATA,sha256=2LdnIpjZzBDcxA4c0EDfQT7MU9NO5sTUGKvui40dUC8,6540
17
+ apache_airflow_providers_mysql-6.3.4rc1.dist-info/RECORD,,