apache-airflow-providers-sqlite 3.9.0rc1__py3-none-any.whl → 3.9.1rc1__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.
- airflow/providers/sqlite/__init__.py +1 -1
- airflow/providers/sqlite/get_provider_info.py +3 -2
- airflow/providers/sqlite/operators/sqlite.py +2 -2
- {apache_airflow_providers_sqlite-3.9.0rc1.dist-info → apache_airflow_providers_sqlite-3.9.1rc1.dist-info}/METADATA +13 -14
- apache_airflow_providers_sqlite-3.9.1rc1.dist-info/RECORD +11 -0
- {apache_airflow_providers_sqlite-3.9.0rc1.dist-info → apache_airflow_providers_sqlite-3.9.1rc1.dist-info}/WHEEL +1 -1
- apache_airflow_providers_sqlite-3.9.0rc1.dist-info/RECORD +0 -11
- {apache_airflow_providers_sqlite-3.9.0rc1.dist-info → apache_airflow_providers_sqlite-3.9.1rc1.dist-info}/entry_points.txt +0 -0
@@ -29,7 +29,7 @@ from airflow import __version__ as airflow_version
|
|
29
29
|
|
30
30
|
__all__ = ["__version__"]
|
31
31
|
|
32
|
-
__version__ = "3.9.
|
32
|
+
__version__ = "3.9.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,8 +28,9 @@ def get_provider_info():
|
|
28
28
|
"name": "SQLite",
|
29
29
|
"description": "`SQLite <https://www.sqlite.org/>`__\n",
|
30
30
|
"state": "ready",
|
31
|
-
"source-date-epoch":
|
31
|
+
"source-date-epoch": 1731570872,
|
32
32
|
"versions": [
|
33
|
+
"3.9.1",
|
33
34
|
"3.9.0",
|
34
35
|
"3.8.2",
|
35
36
|
"3.8.1",
|
@@ -59,7 +60,7 @@ def get_provider_info():
|
|
59
60
|
"1.0.1",
|
60
61
|
"1.0.0",
|
61
62
|
],
|
62
|
-
"dependencies": ["apache-airflow>=2.8.0", "apache-airflow-providers-common-sql>=1.
|
63
|
+
"dependencies": ["apache-airflow>=2.8.0", "apache-airflow-providers-common-sql>=1.20.0"],
|
63
64
|
"integrations": [
|
64
65
|
{
|
65
66
|
"integration-name": "SQLite",
|
@@ -17,7 +17,7 @@
|
|
17
17
|
# under the License.
|
18
18
|
from __future__ import annotations
|
19
19
|
|
20
|
-
from typing import Sequence
|
20
|
+
from typing import ClassVar, Sequence
|
21
21
|
|
22
22
|
from deprecated import deprecated
|
23
23
|
|
@@ -51,7 +51,7 @@ class SqliteOperator(SQLExecuteQueryOperator):
|
|
51
51
|
|
52
52
|
template_fields: Sequence[str] = ("sql",)
|
53
53
|
template_ext: Sequence[str] = (".sql",)
|
54
|
-
template_fields_renderers = {"sql": "sql"}
|
54
|
+
template_fields_renderers: ClassVar[dict] = {"sql": "sql"}
|
55
55
|
ui_color = "#cdaaed"
|
56
56
|
|
57
57
|
def __init__(self, *, sqlite_conn_id: str = "sqlite_default", **kwargs) -> None:
|
@@ -1,11 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: apache-airflow-providers-sqlite
|
3
|
-
Version: 3.9.
|
3
|
+
Version: 3.9.1rc1
|
4
4
|
Summary: Provider package apache-airflow-providers-sqlite for Apache Airflow
|
5
5
|
Keywords: airflow-provider,sqlite,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,23 +15,22 @@ 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.
|
23
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.20.0rc0
|
25
24
|
Requires-Dist: apache-airflow>=2.8.0rc0
|
26
|
-
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common
|
25
|
+
Requires-Dist: apache-airflow-providers-common-sql ; extra == "common-sql"
|
27
26
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
28
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.
|
29
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.
|
27
|
+
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.1/changelog.html
|
28
|
+
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.1
|
30
29
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
31
30
|
Project-URL: Source Code, https://github.com/apache/airflow
|
32
31
|
Project-URL: Twitter, https://twitter.com/ApacheAirflow
|
33
32
|
Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
34
|
-
Provides-Extra: common
|
33
|
+
Provides-Extra: common-sql
|
35
34
|
|
36
35
|
|
37
36
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
@@ -77,7 +76,7 @@ Provides-Extra: common.sql
|
|
77
76
|
|
78
77
|
Package ``apache-airflow-providers-sqlite``
|
79
78
|
|
80
|
-
Release: ``3.9.
|
79
|
+
Release: ``3.9.1.rc1``
|
81
80
|
|
82
81
|
|
83
82
|
`SQLite <https://www.sqlite.org/>`__
|
@@ -90,7 +89,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
|
|
90
89
|
are in ``airflow.providers.sqlite`` python package.
|
91
90
|
|
92
91
|
You can find package information and changelog for the provider
|
93
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.
|
92
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.1/>`_.
|
94
93
|
|
95
94
|
Installation
|
96
95
|
------------
|
@@ -99,7 +98,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
99
98
|
for the minimum Airflow version supported) via
|
100
99
|
``pip install apache-airflow-providers-sqlite``
|
101
100
|
|
102
|
-
The package supports the following python versions: 3.
|
101
|
+
The package supports the following python versions: 3.9,3.10,3.11,3.12
|
103
102
|
|
104
103
|
Requirements
|
105
104
|
------------
|
@@ -108,7 +107,7 @@ Requirements
|
|
108
107
|
PIP package Version required
|
109
108
|
======================================= ==================
|
110
109
|
``apache-airflow`` ``>=2.8.0``
|
111
|
-
``apache-airflow-providers-common-sql`` ``>=1.
|
110
|
+
``apache-airflow-providers-common-sql`` ``>=1.20.0``
|
112
111
|
======================================= ==================
|
113
112
|
|
114
113
|
Cross provider package dependencies
|
@@ -131,4 +130,4 @@ Dependent package
|
|
131
130
|
============================================================================================================ ==============
|
132
131
|
|
133
132
|
The changelog for the provider package can be found in the
|
134
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.
|
133
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.9.1/changelog.html>`_.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
airflow/providers/sqlite/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
2
|
+
airflow/providers/sqlite/__init__.py,sha256=kCpImZQYEawwHHX2SPypez6jkfpjydXr4Ty9Y_tPNXk,1493
|
3
|
+
airflow/providers/sqlite/get_provider_info.py,sha256=TE_yOWK6hV7IjaEWj0iwQRpSTJrmczcTtPX624waUfA,2905
|
4
|
+
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
+
airflow/providers/sqlite/hooks/sqlite.py,sha256=IFUwWUhtpjY2Fco7isATiX0gcJMzN0_zIW85sRE72zY,2482
|
6
|
+
airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
|
+
airflow/providers/sqlite/operators/sqlite.py,sha256=6twovZOVDzUZosFfSSc_wNF-tA8mhiR06Dw8WqPc9gk,2311
|
8
|
+
apache_airflow_providers_sqlite-3.9.1rc1.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
|
9
|
+
apache_airflow_providers_sqlite-3.9.1rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
10
|
+
apache_airflow_providers_sqlite-3.9.1rc1.dist-info/METADATA,sha256=-ud4nw02F4bh12rnV5i_kRhEFBZUt4eDM7ig9i1oTA8,5981
|
11
|
+
apache_airflow_providers_sqlite-3.9.1rc1.dist-info/RECORD,,
|
@@ -1,11 +0,0 @@
|
|
1
|
-
airflow/providers/sqlite/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
|
2
|
-
airflow/providers/sqlite/__init__.py,sha256=g_1-mtZyHboUaJto3Zw1xK8ZpADjbcS0ucPUSROWAoE,1493
|
3
|
-
airflow/providers/sqlite/get_provider_info.py,sha256=kX0_513xktGgiUkIJBnx5TWfnf_DWaHmIKVEvWoxDoo,2884
|
4
|
-
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
-
airflow/providers/sqlite/hooks/sqlite.py,sha256=IFUwWUhtpjY2Fco7isATiX0gcJMzN0_zIW85sRE72zY,2482
|
6
|
-
airflow/providers/sqlite/operators/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
7
|
-
airflow/providers/sqlite/operators/sqlite.py,sha256=7CTi26Yi0uJKLAp2TLTaVy51BinP0uIIdZRox5ZQ5yc,2285
|
8
|
-
apache_airflow_providers_sqlite-3.9.0rc1.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
|
9
|
-
apache_airflow_providers_sqlite-3.9.0rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
10
|
-
apache_airflow_providers_sqlite-3.9.0rc1.dist-info/METADATA,sha256=_fRVYtDQMWk1ppfLsZTJkoZNGw-vl01kQx3SLwHL-zM,6035
|
11
|
-
apache_airflow_providers_sqlite-3.9.0rc1.dist-info/RECORD,,
|