apache-airflow-providers-mysql 5.5.4__py3-none-any.whl → 5.6.0__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.
@@ -27,7 +27,7 @@ import packaging.version
27
27
 
28
28
  __all__ = ["__version__"]
29
29
 
30
- __version__ = "5.5.4"
30
+ __version__ = "5.6.0"
31
31
 
32
32
  try:
33
33
  from airflow import __version__ as airflow_version
@@ -35,8 +35,8 @@ except ImportError:
35
35
  from airflow.version import version as airflow_version
36
36
 
37
37
  if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
38
- "2.6.0"
38
+ "2.7.0"
39
39
  ):
40
40
  raise RuntimeError(
41
- f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.6.0+"
41
+ f"The package `apache-airflow-providers-mysql:{__version__}` needs Apache Airflow 2.7.0+"
42
42
  )
@@ -28,8 +28,9 @@ def get_provider_info():
28
28
  "name": "MySQL",
29
29
  "description": "`MySQL <https://www.mysql.com/>`__\n",
30
30
  "state": "ready",
31
- "source-date-epoch": 1709555930,
31
+ "source-date-epoch": 1714476887,
32
32
  "versions": [
33
+ "5.6.0",
33
34
  "5.5.4",
34
35
  "5.5.3",
35
36
  "5.5.2",
@@ -65,7 +66,7 @@ def get_provider_info():
65
66
  "1.0.0",
66
67
  ],
67
68
  "dependencies": [
68
- "apache-airflow>=2.6.0",
69
+ "apache-airflow>=2.7.0",
69
70
  "apache-airflow-providers-common-sql>=1.3.1",
70
71
  "mysqlclient>=1.3.6",
71
72
  "mysql-connector-python>=8.0.29",
@@ -16,6 +16,7 @@
16
16
  # specific language governing permissions and limitations
17
17
  # under the License.
18
18
  """This module allows to connect to a MySQL database."""
19
+
19
20
  from __future__ import annotations
20
21
 
21
22
  import json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-mysql
3
- Version: 5.5.4
3
+ Version: 5.6.0
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>
@@ -19,9 +19,10 @@ Classifier: Programming Language :: Python :: 3.8
19
19
  Classifier: Programming Language :: Python :: 3.9
20
20
  Classifier: Programming Language :: Python :: 3.10
21
21
  Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
22
23
  Classifier: Topic :: System :: Monitoring
23
24
  Requires-Dist: apache-airflow-providers-common-sql>=1.3.1
24
- Requires-Dist: apache-airflow>=2.6.0
25
+ Requires-Dist: apache-airflow>=2.7.0
25
26
  Requires-Dist: mysql-connector-python>=8.0.29
26
27
  Requires-Dist: mysqlclient>=1.3.6
27
28
  Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
@@ -31,8 +32,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
31
32
  Requires-Dist: apache-airflow-providers-trino ; extra == "trino"
32
33
  Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
33
34
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
34
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.5.4/changelog.html
35
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.5.4
35
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.0/changelog.html
36
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.0
36
37
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
37
38
  Project-URL: Source Code, https://github.com/apache/airflow
38
39
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -89,7 +90,7 @@ Provides-Extra: vertica
89
90
 
90
91
  Package ``apache-airflow-providers-mysql``
91
92
 
92
- Release: ``5.5.4``
93
+ Release: ``5.6.0``
93
94
 
94
95
 
95
96
  `MySQL <https://www.mysql.com/>`__
@@ -102,7 +103,7 @@ This is a provider package for ``mysql`` provider. All classes for this provider
102
103
  are in ``airflow.providers.mysql`` python package.
103
104
 
104
105
  You can find package information and changelog for the provider
105
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.5.4/>`_.
106
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.0/>`_.
106
107
 
107
108
  Installation
108
109
  ------------
@@ -111,7 +112,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
111
112
  for the minimum Airflow version supported) via
112
113
  ``pip install apache-airflow-providers-mysql``
113
114
 
114
- The package supports the following python versions: 3.8,3.9,3.10,3.11
115
+ The package supports the following python versions: 3.8,3.9,3.10,3.11,3.12
115
116
 
116
117
  Requirements
117
118
  ------------
@@ -119,7 +120,7 @@ Requirements
119
120
  ======================================= ==================
120
121
  PIP package Version required
121
122
  ======================================= ==================
122
- ``apache-airflow`` ``>=2.6.0``
123
+ ``apache-airflow`` ``>=2.7.0``
123
124
  ``apache-airflow-providers-common-sql`` ``>=1.3.1``
124
125
  ``mysqlclient`` ``>=1.3.6``
125
126
  ``mysql-connector-python`` ``>=8.0.29``
@@ -150,4 +151,4 @@ Dependent package
150
151
  ============================================================================================================== ===============
151
152
 
152
153
  The changelog for the provider package can be found in the
153
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.5.4/changelog.html>`_.
154
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-mysql/5.6.0/changelog.html>`_.
@@ -1,10 +1,10 @@
1
1
  airflow/providers/mysql/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
2
- airflow/providers/mysql/__init__.py,sha256=0bkclJakYCQ0BcGr8WM2TR0xPuo83CIXEa7U0YKi6bA,1580
3
- airflow/providers/mysql/get_provider_info.py,sha256=BZy3JHBEQUBBy0qTDrQBARQr8DOfzjNNRit4XuDAl1w,4226
2
+ airflow/providers/mysql/__init__.py,sha256=VJVrPzuGPOlA5_8Fm3SqqHF6HDxAJwdbGmpG2PK90II,1580
3
+ airflow/providers/mysql/get_provider_info.py,sha256=90yF8iemtFrlSXyggrijbD-NtWsgd3c3OqMruENX2Qo,4247
4
4
  airflow/providers/mysql/datasets/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
5
5
  airflow/providers/mysql/datasets/mysql.py,sha256=ORHZmCa1AZAWwpF7GKH-8faqOKSohJvKtqRgfDnQRRc,1385
6
6
  airflow/providers/mysql/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
7
- airflow/providers/mysql/hooks/mysql.py,sha256=c3TDxGX0adqUW8AIYvZgzUFf0XVaOFPWCohgKpG8sIw,13219
7
+ airflow/providers/mysql/hooks/mysql.py,sha256=xrv813C5TAF4Suq2EGDMVT8Is7PUfeS-7FPimEQtXto,13220
8
8
  airflow/providers/mysql/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
9
9
  airflow/providers/mysql/operators/mysql.py,sha256=97o4sVITwXsQgOxBpiNu3DTy1PKgNCviNRSnS0Zyj2Q,2934
10
10
  airflow/providers/mysql/transfers/__init__.py,sha256=9hdXHABrVpkbpjZgUft39kOFL2xSGeG4GEua0Hmelus,785
@@ -12,7 +12,7 @@ airflow/providers/mysql/transfers/presto_to_mysql.py,sha256=gGtZIGXLpY2jP8o3xwZ5
12
12
  airflow/providers/mysql/transfers/s3_to_mysql.py,sha256=E5I7QHWqzrG3Fi9AGklwZWRCVxVDOD1tOB2xHEOZUJw,3876
13
13
  airflow/providers/mysql/transfers/trino_to_mysql.py,sha256=wiiuilxSHchJD0W2K838UHH5iUs-R5HNc0zyRDOZDRs,3251
14
14
  airflow/providers/mysql/transfers/vertica_to_mysql.py,sha256=NiIFMv0zy4M9Ynrs4InG9nqp6lyvmgDlz7_iDJWxQEI,6308
15
- apache_airflow_providers_mysql-5.5.4.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
16
- apache_airflow_providers_mysql-5.5.4.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
17
- apache_airflow_providers_mysql-5.5.4.dist-info/METADATA,sha256=RSmMehromOosqCQ3AyPz32_mgHXWs2gskG0A5WL7NL0,7270
18
- apache_airflow_providers_mysql-5.5.4.dist-info/RECORD,,
15
+ apache_airflow_providers_mysql-5.6.0.dist-info/entry_points.txt,sha256=kIbWluJZ1LX9jo9pLkqbnu6DUgYpoGKXzmSvjT5czKM,101
16
+ apache_airflow_providers_mysql-5.6.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
17
+ apache_airflow_providers_mysql-5.6.0.dist-info/METADATA,sha256=mBfDZn4zl4OOj39iwSDHD5gzgaMCeUGf2t5MJRXZdJ0,7326
18
+ apache_airflow_providers_mysql-5.6.0.dist-info/RECORD,,