apache-airflow-providers-sqlite 4.1.1__py3-none-any.whl → 4.1.2rc1__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/hooks/sqlite.py +1 -4
- {apache_airflow_providers_sqlite-4.1.1.dist-info → apache_airflow_providers_sqlite-4.1.2rc1.dist-info}/METADATA +12 -10
- apache_airflow_providers_sqlite-4.1.2rc1.dist-info/RECORD +9 -0
- apache_airflow_providers_sqlite-4.1.1.dist-info/RECORD +0 -9
- {apache_airflow_providers_sqlite-4.1.1.dist-info → apache_airflow_providers_sqlite-4.1.2rc1.dist-info}/WHEEL +0 -0
- {apache_airflow_providers_sqlite-4.1.1.dist-info → apache_airflow_providers_sqlite-4.1.2rc1.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__ = "4.1.
|
32
|
+
__version__ = "4.1.2"
|
33
33
|
|
34
34
|
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
|
35
35
|
"2.10.0"
|
@@ -46,10 +46,7 @@ class SqliteHook(DbApiHook):
|
|
46
46
|
|
47
47
|
def get_uri(self) -> str:
|
48
48
|
"""Override DbApiHook get_uri method for get_sqlalchemy_engine()."""
|
49
|
-
|
50
|
-
airflow_conn = self.get_connection(conn_id)
|
51
|
-
if airflow_conn.conn_type is None:
|
52
|
-
airflow_conn.conn_type = self.conn_type
|
49
|
+
airflow_conn = self.get_connection(self.get_conn_id())
|
53
50
|
airflow_uri = unquote(airflow_conn.get_uri())
|
54
51
|
# For sqlite, there is no schema in the connection URI. So we need to drop the trailing slash.
|
55
52
|
airflow_sqlite_uri = airflow_uri.replace("/?", "?")
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: apache-airflow-providers-sqlite
|
3
|
-
Version: 4.1.
|
3
|
+
Version: 4.1.2rc1
|
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:
|
8
|
+
Requires-Python: >=3.10
|
9
9
|
Description-Content-Type: text/x-rst
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
11
11
|
Classifier: Environment :: Console
|
@@ -18,12 +18,13 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
21
22
|
Classifier: Topic :: System :: Monitoring
|
22
|
-
Requires-Dist: apache-airflow>=2.10.
|
23
|
-
Requires-Dist: apache-airflow-providers-common-sql>=1.26.
|
23
|
+
Requires-Dist: apache-airflow>=2.10.0rc1
|
24
|
+
Requires-Dist: apache-airflow-providers-common-sql>=1.26.0rc1
|
24
25
|
Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
|
25
|
-
Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.
|
26
|
-
Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.
|
26
|
+
Project-URL: Changelog, https://airflow.staged.apache.org/docs/apache-airflow-providers-sqlite/4.1.2/changelog.html
|
27
|
+
Project-URL: Documentation, https://airflow.staged.apache.org/docs/apache-airflow-providers-sqlite/4.1.2
|
27
28
|
Project-URL: Mastodon, https://fosstodon.org/@airflow
|
28
29
|
Project-URL: Slack Chat, https://s.apache.org/airflow-slack
|
29
30
|
Project-URL: Source Code, https://github.com/apache/airflow
|
@@ -54,8 +55,9 @@ Project-URL: YouTube, https://www.youtube.com/channel/UCSXwxpWZQ7XZ1WL3wqevChA/
|
|
54
55
|
|
55
56
|
Package ``apache-airflow-providers-sqlite``
|
56
57
|
|
57
|
-
Release: ``4.1.
|
58
|
+
Release: ``4.1.2``
|
58
59
|
|
60
|
+
Release Date: ``|PypiReleaseDate|``
|
59
61
|
|
60
62
|
`SQLite <https://www.sqlite.org/>`__
|
61
63
|
|
@@ -67,7 +69,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
|
|
67
69
|
are in ``airflow.providers.sqlite`` python package.
|
68
70
|
|
69
71
|
You can find package information and changelog for the provider
|
70
|
-
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.
|
72
|
+
in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.2/>`_.
|
71
73
|
|
72
74
|
Installation
|
73
75
|
------------
|
@@ -76,7 +78,7 @@ You can install this package on top of an existing Airflow 2 installation (see `
|
|
76
78
|
for the minimum Airflow version supported) via
|
77
79
|
``pip install apache-airflow-providers-sqlite``
|
78
80
|
|
79
|
-
The package supports the following python versions: 3.10,3.11,3.12
|
81
|
+
The package supports the following python versions: 3.10,3.11,3.12,3.13
|
80
82
|
|
81
83
|
Requirements
|
82
84
|
------------
|
@@ -108,5 +110,5 @@ Dependent package
|
|
108
110
|
============================================================================================================ ==============
|
109
111
|
|
110
112
|
The changelog for the provider package can be found in the
|
111
|
-
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.
|
113
|
+
`changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/4.1.2/changelog.html>`_.
|
112
114
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
airflow/providers/sqlite/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
2
|
+
airflow/providers/sqlite/__init__.py,sha256=fDicqRP2roVC_v80UDNbeWDsWvdknRup3J-NbwAPhcU,1495
|
3
|
+
airflow/providers/sqlite/get_provider_info.py,sha256=0nAm1Ci7Az3hCYQInh-84Rjxrz29kXfIZI4G88u6jJ4,1928
|
4
|
+
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
+
airflow/providers/sqlite/hooks/sqlite.py,sha256=7Hpj2UeQD1xzSQ9mpr7Qqh5z5boIJdrfP0duwXSiC3g,2361
|
6
|
+
apache_airflow_providers_sqlite-4.1.2rc1.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
|
7
|
+
apache_airflow_providers_sqlite-4.1.2rc1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
8
|
+
apache_airflow_providers_sqlite-4.1.2rc1.dist-info/METADATA,sha256=ZeAm__fjQTgkljEOpRoDl4TBjBP1_rwVZBDqlzzzFxU,5081
|
9
|
+
apache_airflow_providers_sqlite-4.1.2rc1.dist-info/RECORD,,
|
@@ -1,9 +0,0 @@
|
|
1
|
-
airflow/providers/sqlite/LICENSE,sha256=gXPVwptPlW1TJ4HSuG5OMPg-a3h43OGMkZRR1rpwfJA,10850
|
2
|
-
airflow/providers/sqlite/__init__.py,sha256=ycRZcQ502MqtWsnGnXKEKMTpXgq69hpr4KWMIDtsw8A,1495
|
3
|
-
airflow/providers/sqlite/get_provider_info.py,sha256=0nAm1Ci7Az3hCYQInh-84Rjxrz29kXfIZI4G88u6jJ4,1928
|
4
|
-
airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
|
5
|
-
airflow/providers/sqlite/hooks/sqlite.py,sha256=IFUwWUhtpjY2Fco7isATiX0gcJMzN0_zIW85sRE72zY,2482
|
6
|
-
apache_airflow_providers_sqlite-4.1.1.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
|
7
|
-
apache_airflow_providers_sqlite-4.1.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
8
|
-
apache_airflow_providers_sqlite-4.1.1.dist-info/METADATA,sha256=SpMJj1tigNtZ2KHGDg641N_CUE5-1bbAoDziL-X-ec8,4966
|
9
|
-
apache_airflow_providers_sqlite-4.1.1.dist-info/RECORD,,
|
File without changes
|