apache-airflow-providers-sqlite 3.8.1rc1__py3-none-any.whl → 3.8.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.
@@ -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__ = "3.8.1"
32
+ __version__ = "3.8.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": "SQLite",
29
29
  "description": "`SQLite <https://www.sqlite.org/>`__\n",
30
30
  "state": "ready",
31
- "source-date-epoch": 1716289150,
31
+ "source-date-epoch": 1722664885,
32
32
  "versions": [
33
+ "3.8.2",
33
34
  "3.8.1",
34
35
  "3.8.0",
35
36
  "3.7.1",
@@ -57,7 +58,7 @@ def get_provider_info():
57
58
  "1.0.1",
58
59
  "1.0.0",
59
60
  ],
60
- "dependencies": ["apache-airflow>=2.7.0", "apache-airflow-providers-common-sql>=1.3.1"],
61
+ "dependencies": ["apache-airflow>=2.7.0", "apache-airflow-providers-common-sql>=1.14.1"],
61
62
  "integrations": [
62
63
  {
63
64
  "integration-name": "SQLite",
@@ -46,7 +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
- conn_id = getattr(self, self.conn_name_attr)
49
+ conn_id = self.get_conn_id()
50
50
  airflow_conn = self.get_connection(conn_id)
51
51
  if airflow_conn.conn_type is None:
52
52
  airflow_conn.conn_type = self.conn_type
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: apache-airflow-providers-sqlite
3
- Version: 3.8.1rc1
3
+ Version: 3.8.2
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>
@@ -21,12 +21,12 @@ Classifier: Programming Language :: Python :: 3.10
21
21
  Classifier: Programming Language :: Python :: 3.11
22
22
  Classifier: Programming Language :: Python :: 3.12
23
23
  Classifier: Topic :: System :: Monitoring
24
- Requires-Dist: apache-airflow-providers-common-sql>=1.3.1rc0
25
- Requires-Dist: apache-airflow>=2.7.0rc0
24
+ Requires-Dist: apache-airflow-providers-common-sql>=1.14.1
25
+ Requires-Dist: apache-airflow>=2.7.0
26
26
  Requires-Dist: apache-airflow-providers-common-sql ; extra == "common.sql"
27
27
  Project-URL: Bug Tracker, https://github.com/apache/airflow/issues
28
- Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.1/changelog.html
29
- Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.1
28
+ Project-URL: Changelog, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.2/changelog.html
29
+ Project-URL: Documentation, https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.2
30
30
  Project-URL: Slack Chat, https://s.apache.org/airflow-slack
31
31
  Project-URL: Source Code, https://github.com/apache/airflow
32
32
  Project-URL: Twitter, https://twitter.com/ApacheAirflow
@@ -77,7 +77,7 @@ Provides-Extra: common.sql
77
77
 
78
78
  Package ``apache-airflow-providers-sqlite``
79
79
 
80
- Release: ``3.8.1.rc1``
80
+ Release: ``3.8.2``
81
81
 
82
82
 
83
83
  `SQLite <https://www.sqlite.org/>`__
@@ -90,7 +90,7 @@ This is a provider package for ``sqlite`` provider. All classes for this provide
90
90
  are in ``airflow.providers.sqlite`` python package.
91
91
 
92
92
  You can find package information and changelog for the provider
93
- in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.1/>`_.
93
+ in the `documentation <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.2/>`_.
94
94
 
95
95
  Installation
96
96
  ------------
@@ -108,7 +108,7 @@ Requirements
108
108
  PIP package Version required
109
109
  ======================================= ==================
110
110
  ``apache-airflow`` ``>=2.7.0``
111
- ``apache-airflow-providers-common-sql`` ``>=1.3.1``
111
+ ``apache-airflow-providers-common-sql`` ``>=1.14.1``
112
112
  ======================================= ==================
113
113
 
114
114
  Cross provider package dependencies
@@ -131,4 +131,4 @@ Dependent package
131
131
  ============================================================================================================ ==============
132
132
 
133
133
  The changelog for the provider package can be found in the
134
- `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.1/changelog.html>`_.
134
+ `changelog <https://airflow.apache.org/docs/apache-airflow-providers-sqlite/3.8.2/changelog.html>`_.
@@ -0,0 +1,11 @@
1
+ airflow/providers/sqlite/LICENSE,sha256=FFb4jd2AXnOOf7XLP04pQW6jbdhG49TxlGY6fFpCV1Y,13609
2
+ airflow/providers/sqlite/__init__.py,sha256=HEeBSeIbtVYgHheY9FncuShv5bUN310UysY1ZMifK9A,1493
3
+ airflow/providers/sqlite/get_provider_info.py,sha256=oq-s2mtW7pBwSex-larc_wwzlEN3BYDO2v3yhB64EDk,2863
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.8.2.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
9
+ apache_airflow_providers_sqlite-3.8.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
10
+ apache_airflow_providers_sqlite-3.8.2.dist-info/METADATA,sha256=Kb6UYPhU06b32pumAhSK1r7uQjjhyRPVD5-OBNqOd0M,6022
11
+ apache_airflow_providers_sqlite-3.8.2.dist-info/RECORD,,
@@ -1,11 +0,0 @@
1
- airflow/providers/sqlite/LICENSE,sha256=ywUBpKZc7Jb96rVt5I3IDbg7dIJAbUSHkuoDcF3jbH4,13569
2
- airflow/providers/sqlite/__init__.py,sha256=z9D5X-6dkh9Gu1ub0eOrWKNNPbXTxjQGSVTRYNjWEWg,1493
3
- airflow/providers/sqlite/get_provider_info.py,sha256=977xui4_cECVMR-F6dBFiCSFkKY0zR5YjyL-KvlH_gs,2841
4
- airflow/providers/sqlite/hooks/__init__.py,sha256=mlJxuZLkd5x-iq2SBwD3mvRQpt3YR7wjz_nceyF1IaI,787
5
- airflow/providers/sqlite/hooks/sqlite.py,sha256=NKecFBAmPPMsmV7bKLmIu3iGmtoTqpbOUiQSd21hbT4,2498
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.8.1rc1.dist-info/entry_points.txt,sha256=-ATQuveY9g-W1bjKwyJ7s-aw7CkMv87j8czqQNtoFf0,102
9
- apache_airflow_providers_sqlite-3.8.1rc1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
10
- apache_airflow_providers_sqlite-3.8.1rc1.dist-info/METADATA,sha256=0n8NaVa37ZY_l2-KnZX4UYM4nftG3m5YkTXiMzRG4I0,6033
11
- apache_airflow_providers_sqlite-3.8.1rc1.dist-info/RECORD,,