apache-airflow-providers-mysql 6.2.2rc1__py3-none-any.whl → 6.3.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.
@@ -29,11 +29,11 @@ from airflow import __version__ as airflow_version
29
29
 
30
30
  __all__ = ["__version__"]
31
31
 
32
- __version__ = "6.2.2"
32
+ __version__ = "6.3.0"
33
33
 
34
34
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35
- "2.9.0"
35
+ "2.10.0"
36
36
  ):
37
37
  raise RuntimeError(
38
- f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.9.0+"
38
+ f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.10.0+"
39
39
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apache-airflow-providers-mysql
3
- Version: 6.2.2rc1
3
+ Version: 6.3.0rc1
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,12 @@ 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.0rc0
24
- Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
25
- Requires-Dist: mysqlclient>=1.4.0; sys_platform != 'darwin'
26
- Requires-Dist: mysql-connector-python>=8.0.29
23
+ Requires-Dist: apache-airflow>=2.10.0rc1
24
+ Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc1
25
+ Requires-Dist: mysqlclient>=2.1.0; sys_platform != "darwin" and python_version<"3.12"
26
+ Requires-Dist: mysqlclient>=2.2.1; sys_platform != "darwin" and python_version>="3.12"
27
+ Requires-Dist: mysql-connector-python>=8.0.29; python_version<"3.12"
28
+ Requires-Dist: mysql-connector-python>=8.2.0; python_version>="3.12"
27
29
  Requires-Dist: aiomysql>=0.2.0
28
30
  Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
29
31
  Requires-Dist: apache-airflow-providers-openlineage ; extra == "openlineage"
@@ -31,8 +33,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
31
33
  Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
32
34
  Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
33
35
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
34
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.2.2/changelog.html
35
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.2.2
36
+ Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-mysql/6.3.0/changelog.html
37
+ Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-mysql/6.3.0
36
38
  Project-URL: Mastodon, https://fosstodon.org/@airflow
37
39
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
38
40
  Project-URL: Source Code, https://github.com/apache/airflow
@@ -69,7 +71,7 @@ Provides-Extra: vertica
69
71
 
70
72
  Package ``apache-airflow-providers-mysql``
71
73
 
72
- Release: ``6.2.2``
74
+ Release: ``6.3.0``
73
75
 
74
76
 
75
77
  `MySQL <https://www.mysql.com/>`__
@@ -82,7 +84,7 @@ This is a provider package for ``mysql`` provider. All classes for this provider
82
84
  are in ``airflow.providers.mysql`` python package.
83
85
 
84
86
  You can find package information and changelog for the provider
85
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.2.2/>`_.
87
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.0/>`_.
86
88
 
87
89
  Installation
88
90
  ------------
@@ -96,15 +98,17 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
96
98
  Requirements
97
99
  ------------
98
100
 
99
- ======================================= =====================================
101
+ ======================================= ==================================================================
100
102
  PIP package Version required
101
- ======================================= =====================================
102
- ``apache-airflow`` ``>=2.9.0``
103
+ ======================================= ==================================================================
104
+ ``apache-airflow`` ``>=2.10.0``
103
105
  ``apache-airflow-providers-common-sql`` ``>=1.20.0``
104
- ``mysqlclient`` ``>=1.4.0; sys_platform != "darwin"``
105
- ``mysql-connector-python`` ``>=8.0.29``
106
+ ``mysqlclient`` ``>=2.1.0; sys_platform != "darwin" and python_version < "3.12"``
107
+ ``mysqlclient`` ``>=2.2.1; sys_platform != "darwin" and python_version >= "3.12"``
108
+ ``mysql-connector-python`` ``>=8.0.29; python_version < "3.12"``
109
+ ``mysql-connector-python`` ``>=8.2.0; python_version >= "3.12"``
106
110
  ``aiomysql`` ``>=0.2.0``
107
- ======================================= =====================================
111
+ ======================================= ==================================================================
108
112
 
109
113
  Cross provider package dependencies
110
114
  -----------------------------------
@@ -131,5 +135,5 @@ Dependent package
131
135
  ============================================================================================================== ===============
132
136
 
133
137
  The changelog for the provider package can be found in the
134
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.2.2/changelog.html>`_.
138
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/6.3.0/changelog.html>`_.
135
139
 
@@ -1,5 +1,5 @@
1
1
  airflow/providers/mysql/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
2
- airflow/providers/mysql/__init__.py,sha256=k3Y-uzR2ZUGbwdaCzB9IhvKIJllzBg7a7RRY3lAEWLQ,1492
2
+ airflow/providers/mysql/__init__.py,sha256=t3EPKUVVGkMGpTrmCwmZQWJIeHZx8v1oUKZugu3hRmE,1494
3
3
  airflow/providers/mysql/get_provider_info.py,sha256=LNQZ8O48srWzGjS8mzLeAsa-VFGFY6ypkHK1jjr6umc,3064
4
4
  airflow/providers/mysql/assets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
5
  airflow/providers/mysql/assets/mysql.py,sha256=ORHZmCa1AZAWwpF7GKH-8faqOKSohJvKtqRgfDnQRRc,1385
@@ -10,7 +10,7 @@ airflow/providers/mysql/transfers/presto_to_mysql.py,sha256=XqevcxJ8i_ABZlO_mFBt
10
10
  airflow/providers/mysql/transfers/s3_to_mysql.py,sha256=ZKsm8OmbOBl7q-w2RSwSP3UMmOpvKlAVl0RW0qtDzjM,4065
11
11
  airflow/providers/mysql/transfers/trino_to_mysql.py,sha256=_ECbGmZbrjITzhWPZAGD7S5oa0IxujNu23hCKJ6mLyo,3440
12
12
  airflow/providers/mysql/transfers/vertica_to_mysql.py,sha256=CNk0e99Fc4amhZO31WrBCXVgzAl15HgbpV6O2y6JMFI,6950
13
- apache_airflow_providers_mysql-6.2.2rc1.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
14
- apache_airflow_providers_mysql-6.2.2rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
15
- apache_airflow_providers_mysql-6.2.2rc1.dist-info/METADATA,sha256=enH4ilUZlnOid5twG1QbWjWTLJC5h0Le9DBtOKkscXs,6525
16
- apache_airflow_providers_mysql-6.2.2rc1.dist-info/RECORD,,
13
+ apache_airflow_providers_mysql-6.3.0rc1.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
14
+ apache_airflow_providers_mysql-6.3.0rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
15
+ apache_airflow_providers_mysql-6.3.0rc1.dist-info/METADATA,sha256=HQNGztcuNpGxI_saAaE-pKbBlyg8qVY0BcUaXXFHeuY,7073
16
+ apache_airflow_providers_mysql-6.3.0rc1.dist-info/RECORD,,