apache-airflow-providers-apache-hive 8.1.1__py3-none-any.whl → 8.1.2__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-apache-hive might be problematic. Click here for more details.
- airflow/providers/apache/hive/LICENSE +4 -4
- airflow/providers/apache/hive/__init__.py +1 -1
- airflow/providers/apache/hive/get_provider_info.py +6 -3
- {apache_airflow_providers_apache_hive-8.1.1.dist-info → apache_airflow_providers_apache_hive-8.1.2.dist-info}/METADATA +17 -13
- {apache_airflow_providers_apache_hive-8.1.1.dist-info → apache_airflow_providers_apache_hive-8.1.2.dist-info}/RECORD +7 -7
- {apache_airflow_providers_apache_hive-8.1.1.dist-info → apache_airflow_providers_apache_hive-8.1.2.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_apache_hive-8.1.1.dist-info → apache_airflow_providers_apache_hive-8.1.2.dist-info}/entry_points.txt +0 -0
|
@@ -215,7 +215,7 @@ Third party Apache 2.0 licenses
|
|
|
215
215
|
|
|
216
216
|
The following components are provided under the Apache 2.0 License.
|
|
217
217
|
See project link for details. The text of each license is also included
|
|
218
|
-
at licenses/LICENSE-[project].txt.
|
|
218
|
+
at 3rd-party-licenses/LICENSE-[project].txt.
|
|
219
219
|
|
|
220
220
|
(ALv2 License) hue v4.3.0 (https://github.com/cloudera/hue/)
|
|
221
221
|
(ALv2 License) jqclock v2.3.0 (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
|
|
@@ -227,7 +227,7 @@ MIT licenses
|
|
|
227
227
|
========================================================================
|
|
228
228
|
|
|
229
229
|
The following components are provided under the MIT License. See project link for details.
|
|
230
|
-
The text of each license is also included at licenses/LICENSE-[project].txt.
|
|
230
|
+
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
231
231
|
|
|
232
232
|
(MIT License) jquery v3.5.1 (https://jquery.org/license/)
|
|
233
233
|
(MIT License) dagre-d3 v0.6.4 (https://github.com/cpettitt/dagre-d3)
|
|
@@ -243,11 +243,11 @@ The text of each license is also included at licenses/LICENSE-[project].txt.
|
|
|
243
243
|
BSD 3-Clause licenses
|
|
244
244
|
========================================================================
|
|
245
245
|
The following components are provided under the BSD 3-Clause license. See project links for details.
|
|
246
|
-
The text of each license is also included at licenses/LICENSE-[project].txt.
|
|
246
|
+
The text of each license is also included at 3rd-party-licenses/LICENSE-[project].txt.
|
|
247
247
|
|
|
248
248
|
(BSD 3 License) d3 v5.16.0 (https://d3js.org)
|
|
249
249
|
(BSD 3 License) d3-shape v2.1.0 (https://github.com/d3/d3-shape)
|
|
250
250
|
(BSD 3 License) cgroupspy 0.2.1 (https://github.com/cloudsigma/cgroupspy)
|
|
251
251
|
|
|
252
252
|
========================================================================
|
|
253
|
-
See licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
|
253
|
+
See 3rd-party-licenses/LICENSES-ui.txt for packages used in `/airflow/www`
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "8.1.
|
|
32
|
+
__version__ = "8.1.2"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.7.0"
|
|
@@ -28,8 +28,9 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Apache Hive",
|
|
29
29
|
"description": "`Apache Hive <https://hive.apache.org/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
31
|
+
"source-date-epoch": 1718603836,
|
|
32
32
|
"versions": [
|
|
33
|
+
"8.1.2",
|
|
33
34
|
"8.1.1",
|
|
34
35
|
"8.1.0",
|
|
35
36
|
"8.0.0",
|
|
@@ -78,9 +79,11 @@ def get_provider_info():
|
|
|
78
79
|
"apache-airflow>=2.7.0",
|
|
79
80
|
"apache-airflow-providers-common-sql>=1.3.1",
|
|
80
81
|
"hmsclient>=0.1.0",
|
|
81
|
-
|
|
82
|
+
'pandas>=2.1.2,<2.2;python_version>="3.9"',
|
|
83
|
+
'pandas>=1.5.3,<2.2;python_version<"3.9"',
|
|
82
84
|
"pyhive[hive_pure_sasl]>=0.7.0",
|
|
83
|
-
"thrift>=0.
|
|
85
|
+
"thrift>=0.11.0",
|
|
86
|
+
"jmespath>=0.7.0",
|
|
84
87
|
],
|
|
85
88
|
"integrations": [
|
|
86
89
|
{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: apache-airflow-providers-apache-hive
|
|
3
|
-
Version: 8.1.
|
|
3
|
+
Version: 8.1.2
|
|
4
4
|
Summary: Provider package apache-airflow-providers-apache-hive for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,apache.hive,airflow,integration
|
|
6
6
|
Author-email: Apache Software Foundation <dev@airflow.apache.org>
|
|
@@ -24,9 +24,11 @@ Classifier: Topic :: System :: Monitoring
|
|
|
24
24
|
Requires-Dist: apache-airflow-providers-common-sql>=1.3.1
|
|
25
25
|
Requires-Dist: apache-airflow>=2.7.0
|
|
26
26
|
Requires-Dist: hmsclient>=0.1.0
|
|
27
|
-
Requires-Dist:
|
|
27
|
+
Requires-Dist: jmespath>=0.7.0
|
|
28
|
+
Requires-Dist: pandas>=1.5.3,<2.2;python_version<"3.9"
|
|
29
|
+
Requires-Dist: pandas>=2.1.2,<2.2;python_version>="3.9"
|
|
28
30
|
Requires-Dist: pyhive[hive_pure_sasl]>=0.7.0
|
|
29
|
-
Requires-Dist: thrift>=0.
|
|
31
|
+
Requires-Dist: thrift>=0.11.0
|
|
30
32
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
|
31
33
|
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
|
|
32
34
|
Requires-Dist: apache-airflow-providers-microsoft-mssql ; extra == "microsoft.mssql"
|
|
@@ -35,8 +37,8 @@ Requires-Dist: apache-airflow-providers-presto ; extra == "presto"
|
|
|
35
37
|
Requires-Dist: apache-airflow-providers-samba ; extra == "samba"
|
|
36
38
|
Requires-Dist: apache-airflow-providers-vertica ; extra == "vertica"
|
|
37
39
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
38
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
39
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
40
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.2/changelog.html
|
|
41
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.2
|
|
40
42
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
41
43
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
42
44
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
@@ -93,7 +95,7 @@ Provides-Extra: vertica
|
|
|
93
95
|
|
|
94
96
|
Package ``apache-airflow-providers-apache-hive``
|
|
95
97
|
|
|
96
|
-
Release: ``8.1.
|
|
98
|
+
Release: ``8.1.2``
|
|
97
99
|
|
|
98
100
|
|
|
99
101
|
`Apache Hive <https://hive.apache.org/>`__
|
|
@@ -106,7 +108,7 @@ This is a provider package for ``apache.hive`` provider. All classes for this pr
|
|
|
106
108
|
are in ``airflow.providers.apache.hive`` python package.
|
|
107
109
|
|
|
108
110
|
You can find package information and changelog for the provider
|
|
109
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
111
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.2/>`_.
|
|
110
112
|
|
|
111
113
|
Installation
|
|
112
114
|
------------
|
|
@@ -120,16 +122,18 @@ The package supports the following python versions: 3.8,3.9,3.10,3.11,3.12
|
|
|
120
122
|
Requirements
|
|
121
123
|
------------
|
|
122
124
|
|
|
123
|
-
=======================================
|
|
125
|
+
======================================= =========================================
|
|
124
126
|
PIP package Version required
|
|
125
|
-
=======================================
|
|
127
|
+
======================================= =========================================
|
|
126
128
|
``apache-airflow`` ``>=2.7.0``
|
|
127
129
|
``apache-airflow-providers-common-sql`` ``>=1.3.1``
|
|
128
130
|
``hmsclient`` ``>=0.1.0``
|
|
129
|
-
``pandas`` ``>=1.2
|
|
131
|
+
``pandas`` ``>=2.1.2,<2.2; python_version >= "3.9"``
|
|
132
|
+
``pandas`` ``>=1.5.3,<2.2; python_version < "3.9"``
|
|
130
133
|
``pyhive[hive_pure_sasl]`` ``>=0.7.0``
|
|
131
|
-
``thrift`` ``>=0.
|
|
132
|
-
|
|
134
|
+
``thrift`` ``>=0.11.0``
|
|
135
|
+
``jmespath`` ``>=0.7.0``
|
|
136
|
+
======================================= =========================================
|
|
133
137
|
|
|
134
138
|
Cross provider package dependencies
|
|
135
139
|
-----------------------------------
|
|
@@ -157,4 +161,4 @@ Dependent package
|
|
|
157
161
|
====================================================================================================================== ===================
|
|
158
162
|
|
|
159
163
|
The changelog for the provider package can be found in the
|
|
160
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.
|
|
164
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-apache-hive/8.1.2/changelog.html>`_.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
airflow/providers/apache/hive/LICENSE,sha256=
|
|
2
|
-
airflow/providers/apache/hive/__init__.py,sha256=
|
|
3
|
-
airflow/providers/apache/hive/get_provider_info.py,sha256=
|
|
1
|
+
airflow/providers/apache/hive/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
|
2
|
+
airflow/providers/apache/hive/__init__.py,sha256=rDsmlDjbV_IOwH8ido6_mClGcupKJNy5XVaV2NrxvYU,1498
|
|
3
|
+
airflow/providers/apache/hive/get_provider_info.py,sha256=4ng4H0t-J7BbrGuvzdJjh6ON9gf5GcIzq69NdqoQDwI,7002
|
|
4
4
|
airflow/providers/apache/hive/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
5
5
|
airflow/providers/apache/hive/hooks/hive.py,sha256=N9WzqwXL3OMx-D9UC8cOymvERDY-Ki9NW1x1GJ71P8Q,42884
|
|
6
6
|
airflow/providers/apache/hive/macros/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
|
@@ -21,7 +21,7 @@ airflow/providers/apache/hive/transfers/mssql_to_hive.py,sha256=bnhHsen0qqgenQD2
|
|
|
21
21
|
airflow/providers/apache/hive/transfers/mysql_to_hive.py,sha256=eULN-LsKagLF8k2rKfyfOD0np1lvIxbNLjRL2DvUgrU,6625
|
|
22
22
|
airflow/providers/apache/hive/transfers/s3_to_hive.py,sha256=s5OOVnDy3Cm21Ypbp2Gjxff7LhHFb1hFtZI30b8xj-Q,11750
|
|
23
23
|
airflow/providers/apache/hive/transfers/vertica_to_hive.py,sha256=3REqZwpdgNo5PFsDV-8wXWyt9XtmemyETT5sq6ABBT0,5519
|
|
24
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
25
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
26
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
27
|
-
apache_airflow_providers_apache_hive-8.1.
|
|
24
|
+
apache_airflow_providers_apache_hive-8.1.2.dist-info/entry_points.txt,sha256=Hzixt33mYYldwmwswarArUB7ZU0xbmUtd3tFViZ414s,185
|
|
25
|
+
apache_airflow_providers_apache_hive-8.1.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
26
|
+
apache_airflow_providers_apache_hive-8.1.2.dist-info/METADATA,sha256=GqP88lWT_XgvZHy_EcjyYn2mFqT94q-ioFNCSW2v38M,8201
|
|
27
|
+
apache_airflow_providers_apache_hive-8.1.2.dist-info/RECORD,,
|
|
File without changes
|