apache-airflow-providers-teradata 2.6.0rc1__tar.gz → 2.6.1__tar.gz
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-teradata might be problematic. Click here for more details.
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/PKG-INFO +16 -17
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/README.rst +5 -5
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/__init__.py +1 -1
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/get_provider_info.py +3 -3
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/operators/teradata.py +2 -2
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/pyproject.toml +7 -9
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/LICENSE +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/hooks/__init__.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/hooks/teradata.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/operators/__init__.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/operators/teradata_compute_cluster.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/transfers/__init__.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/transfers/azure_blob_to_teradata.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/transfers/s3_to_teradata.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/transfers/teradata_to_teradata.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/triggers/__init__.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/triggers/teradata_compute_cluster.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/utils/__init__.py +0 -0
- {apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/airflow/providers/teradata/utils/constants.py +0 -0
{apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/PKG-INFO
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: apache-airflow-providers-teradata
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.1
|
|
4
4
|
Summary: Provider package apache-airflow-providers-teradata for Apache Airflow
|
|
5
5
|
Keywords: airflow-provider,teradata,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.
|
|
8
|
+
Requires-Python: ~=3.9
|
|
9
9
|
Description-Content-Type: text/x-rst
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Environment :: Console
|
|
@@ -15,29 +15,28 @@ Classifier: Intended Audience :: System Administrators
|
|
|
15
15
|
Classifier: Framework :: Apache Airflow
|
|
16
16
|
Classifier: Framework :: Apache Airflow :: Provider
|
|
17
17
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
22
|
Classifier: Topic :: System :: Monitoring
|
|
24
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.
|
|
25
|
-
Requires-Dist: apache-airflow>=2.8.
|
|
23
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0
|
|
24
|
+
Requires-Dist: apache-airflow>=2.8.0
|
|
26
25
|
Requires-Dist: teradatasql>=17.20.0.28
|
|
27
26
|
Requires-Dist: teradatasqlalchemy>=17.20.0.0
|
|
28
27
|
Requires-Dist: apache-airflow-providers-amazon ; extra == "amazon"
|
|
29
|
-
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common
|
|
30
|
-
Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft
|
|
28
|
+
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common-sql"
|
|
29
|
+
Requires-Dist: apache-airflow-providers-microsoft-azure ; extra == "microsoft-azure"
|
|
31
30
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
|
32
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
33
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
31
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/changelog.html
|
|
32
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1
|
|
34
33
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
|
35
34
|
Project-URL: Source Code, https://github.com/apache/airflow
|
|
36
35
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
|
37
36
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
38
37
|
Provides-Extra: amazon
|
|
39
|
-
Provides-Extra: common
|
|
40
|
-
Provides-Extra: microsoft
|
|
38
|
+
Provides-Extra: common-sql
|
|
39
|
+
Provides-Extra: microsoft-azure
|
|
41
40
|
|
|
42
41
|
|
|
43
42
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
@@ -83,7 +82,7 @@ Provides-Extra: microsoft.azure
|
|
|
83
82
|
|
|
84
83
|
Package ``apache-airflow-providers-teradata``
|
|
85
84
|
|
|
86
|
-
Release: ``2.6.
|
|
85
|
+
Release: ``2.6.1``
|
|
87
86
|
|
|
88
87
|
|
|
89
88
|
`Teradata <https://www.teradata.com/>`__
|
|
@@ -96,7 +95,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
|
|
|
96
95
|
are in ``airflow.providers.teradata`` python package.
|
|
97
96
|
|
|
98
97
|
You can find package information and changelog for the provider
|
|
99
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
98
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/>`_.
|
|
100
99
|
|
|
101
100
|
Installation
|
|
102
101
|
------------
|
|
@@ -105,7 +104,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
|
105
104
|
for the minimum Airflow version supported) via
|
|
106
105
|
``pip install apache-airflow-providers-teradata``
|
|
107
106
|
|
|
108
|
-
The package supports the following python versions: 3.
|
|
107
|
+
The package supports the following python versions: 3.9,3.10,3.11,3.12
|
|
109
108
|
|
|
110
109
|
Requirements
|
|
111
110
|
------------
|
|
@@ -114,7 +113,7 @@ Requirements
|
|
|
114
113
|
PIP package Version required
|
|
115
114
|
======================================= ==================
|
|
116
115
|
``apache-airflow`` ``>=2.8.0``
|
|
117
|
-
``apache-airflow-providers-common-sql`` ``>=1.
|
|
116
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
118
117
|
``teradatasqlalchemy`` ``>=17.20.0.0``
|
|
119
118
|
``teradatasql`` ``>=17.20.0.28``
|
|
120
119
|
======================================= ==================
|
|
@@ -141,4 +140,4 @@ Dependent package
|
|
|
141
140
|
====================================================================================================================== ===================
|
|
142
141
|
|
|
143
142
|
The changelog for the provider package can be found in the
|
|
144
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
143
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/changelog.html>`_.
|
{apache_airflow_providers_teradata-2.6.0rc1 → apache_airflow_providers_teradata-2.6.1}/README.rst
RENAMED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
|
|
43
43
|
Package ``apache-airflow-providers-teradata``
|
|
44
44
|
|
|
45
|
-
Release: ``2.6.
|
|
45
|
+
Release: ``2.6.1``
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
`Teradata <https://www.teradata.com/>`__
|
|
@@ -55,7 +55,7 @@ This is a provider package for ``teradata`` provider. All classes for this provi
|
|
|
55
55
|
are in ``airflow.providers.teradata`` python package.
|
|
56
56
|
|
|
57
57
|
You can find package information and changelog for the provider
|
|
58
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
58
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/>`_.
|
|
59
59
|
|
|
60
60
|
Installation
|
|
61
61
|
------------
|
|
@@ -64,7 +64,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
|
64
64
|
for the minimum Airflow version supported) via
|
|
65
65
|
``pip install apache-airflow-providers-teradata``
|
|
66
66
|
|
|
67
|
-
The package supports the following python versions: 3.
|
|
67
|
+
The package supports the following python versions: 3.9,3.10,3.11,3.12
|
|
68
68
|
|
|
69
69
|
Requirements
|
|
70
70
|
------------
|
|
@@ -73,7 +73,7 @@ Requirements
|
|
|
73
73
|
PIP package Version required
|
|
74
74
|
======================================= ==================
|
|
75
75
|
``apache-airflow`` ``>=2.8.0``
|
|
76
|
-
``apache-airflow-providers-common-sql`` ``>=1.
|
|
76
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
|
77
77
|
``teradatasqlalchemy`` ``>=17.20.0.0``
|
|
78
78
|
``teradatasql`` ``>=17.20.0.28``
|
|
79
79
|
======================================= ==================
|
|
@@ -100,4 +100,4 @@ Dependent package
|
|
|
100
100
|
====================================================================================================================== ===================
|
|
101
101
|
|
|
102
102
|
The changelog for the provider package can be found in the
|
|
103
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
103
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/changelog.html>`_.
|
|
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
|
29
29
|
|
|
30
30
|
__all__ = ["__version__"]
|
|
31
31
|
|
|
32
|
-
__version__ = "2.6.
|
|
32
|
+
__version__ = "2.6.1"
|
|
33
33
|
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
|
35
35
|
"2.8.0"
|
|
@@ -28,11 +28,11 @@ def get_provider_info():
|
|
|
28
28
|
"name": "Teradata",
|
|
29
29
|
"description": "`Teradata <https://www.teradata.com/>`__\n",
|
|
30
30
|
"state": "ready",
|
|
31
|
-
"source-date-epoch":
|
|
32
|
-
"versions": ["2.6.0", "2.5.0", "2.4.0", "2.3.0", "2.2.0", "2.1.1", "2.1.0", "2.0.0"],
|
|
31
|
+
"source-date-epoch": 1731571121,
|
|
32
|
+
"versions": ["2.6.1", "2.6.0", "2.5.0", "2.4.0", "2.3.0", "2.2.0", "2.1.1", "2.1.0", "2.0.0"],
|
|
33
33
|
"dependencies": [
|
|
34
34
|
"apache-airflow>=2.8.0",
|
|
35
|
-
"apache-airflow-providers-common-sql>=1.
|
|
35
|
+
"apache-airflow-providers-common-sql>=1.20.0",
|
|
36
36
|
"teradatasqlalchemy>=17.20.0.0",
|
|
37
37
|
"teradatasql>=17.20.0.28",
|
|
38
38
|
],
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
# under the License.
|
|
18
18
|
from __future__ import annotations
|
|
19
19
|
|
|
20
|
-
from typing import TYPE_CHECKING, Sequence
|
|
20
|
+
from typing import TYPE_CHECKING, ClassVar, Sequence
|
|
21
21
|
|
|
22
22
|
from airflow.models import BaseOperator
|
|
23
23
|
from airflow.providers.common.sql.operators.sql import SQLExecuteQueryOperator
|
|
@@ -49,7 +49,7 @@ class TeradataOperator(SQLExecuteQueryOperator):
|
|
|
49
49
|
"parameters",
|
|
50
50
|
)
|
|
51
51
|
template_ext: Sequence[str] = (".sql",)
|
|
52
|
-
template_fields_renderers = {"sql": "sql"}
|
|
52
|
+
template_fields_renderers: ClassVar[dict] = {"sql": "sql"}
|
|
53
53
|
ui_color = "#e07c24"
|
|
54
54
|
|
|
55
55
|
def __init__(
|
|
@@ -21,14 +21,13 @@
|
|
|
21
21
|
|
|
22
22
|
# IF YOU WANT TO MODIFY THIS FILE, YOU SHOULD MODIFY THE TEMPLATE
|
|
23
23
|
# `pyproject_TEMPLATE.toml.jinja2` IN the `dev/breeze/src/airflow_breeze/templates` DIRECTORY
|
|
24
|
-
#
|
|
25
24
|
[build-system]
|
|
26
|
-
requires = ["flit_core
|
|
25
|
+
requires = ["flit_core==3.10.1"]
|
|
27
26
|
build-backend = "flit_core.buildapi"
|
|
28
27
|
|
|
29
28
|
[project]
|
|
30
29
|
name = "apache-airflow-providers-teradata"
|
|
31
|
-
version = "2.6.
|
|
30
|
+
version = "2.6.1"
|
|
32
31
|
description = "Provider package apache-airflow-providers-teradata for Apache Airflow"
|
|
33
32
|
readme = "README.rst"
|
|
34
33
|
authors = [
|
|
@@ -47,24 +46,23 @@ classifiers = [
|
|
|
47
46
|
"Framework :: Apache Airflow",
|
|
48
47
|
"Framework :: Apache Airflow :: Provider",
|
|
49
48
|
"License :: OSI Approved :: Apache Software License",
|
|
50
|
-
"Programming Language :: Python :: 3.8",
|
|
51
49
|
"Programming Language :: Python :: 3.9",
|
|
52
50
|
"Programming Language :: Python :: 3.10",
|
|
53
51
|
"Programming Language :: Python :: 3.11",
|
|
54
52
|
"Programming Language :: Python :: 3.12",
|
|
55
53
|
"Topic :: System :: Monitoring",
|
|
56
54
|
]
|
|
57
|
-
requires-python = "~=3.
|
|
55
|
+
requires-python = "~=3.9"
|
|
58
56
|
dependencies = [
|
|
59
|
-
"apache-airflow-providers-common-sql>=1.
|
|
60
|
-
"apache-airflow>=2.8.
|
|
57
|
+
"apache-airflow-providers-common-sql>=1.20.0",
|
|
58
|
+
"apache-airflow>=2.8.0",
|
|
61
59
|
"teradatasql>=17.20.0.28",
|
|
62
60
|
"teradatasqlalchemy>=17.20.0.0",
|
|
63
61
|
]
|
|
64
62
|
|
|
65
63
|
[project.urls]
|
|
66
|
-
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
67
|
-
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.
|
|
64
|
+
"Documentation" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1"
|
|
65
|
+
"Changelog" = "https://airflow.apache.org/docs/apache-airflow-providers-teradata/2.6.1/changelog.html"
|
|
68
66
|
"Bug Tracker" = "https://github.com/apache/airflow/issues"
|
|
69
67
|
"Source Code" = "https://github.com/apache/airflow"
|
|
70
68
|
"Slack Chat" = "https://s.apache.org/airflow-slack"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|