adbc-driver-sqlite 1.2.0__tar.gz → 1.4.0__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.
Files changed (20) hide show
  1. {adbc_driver_sqlite-1.2.0/adbc_driver_sqlite.egg-info → adbc_driver_sqlite-1.4.0}/PKG-INFO +4 -4
  2. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/README.md +1 -1
  3. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite/_static_version.py +3 -3
  4. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0/adbc_driver_sqlite.egg-info}/PKG-INFO +4 -4
  5. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/pyproject.toml +1 -1
  6. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/LICENSE.txt +0 -0
  7. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/MANIFEST.in +0 -0
  8. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/NOTICE.txt +0 -0
  9. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite/__init__.py +0 -0
  10. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite/_version.py +0 -0
  11. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite/dbapi.py +0 -0
  12. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite/py.typed +0 -0
  13. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite.egg-info/SOURCES.txt +0 -0
  14. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite.egg-info/dependency_links.txt +0 -0
  15. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite.egg-info/requires.txt +0 -0
  16. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/adbc_driver_sqlite.egg-info/top_level.txt +0 -0
  17. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/setup.cfg +0 -0
  18. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/setup.py +0 -0
  19. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/tests/test_dbapi.py +0 -0
  20. {adbc_driver_sqlite-1.2.0 → adbc_driver_sqlite-1.4.0}/tests/test_lowlevel.py +0 -0
@@ -1,12 +1,12 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: adbc-driver-sqlite
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: An ADBC driver for working with SQLite.
5
5
  Author-email: Apache Arrow Developers <dev@arrow.apache.org>
6
6
  License: Apache-2.0
7
7
  Project-URL: homepage, https://arrow.apache.org/adbc/
8
8
  Project-URL: repository, https://github.com/apache/arrow-adbc
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE.txt
12
12
  License-File: NOTICE.txt
@@ -82,7 +82,7 @@ For users building from the arrow-adbc source repository, you can alternately us
82
82
  For example, assuming you run cmake from the project root:
83
83
 
84
84
  ```shell
85
- cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
85
+ cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_SQLITE=ON
86
86
  cmake --build build --target python
87
87
  ```
88
88
 
@@ -60,7 +60,7 @@ For users building from the arrow-adbc source repository, you can alternately us
60
60
  For example, assuming you run cmake from the project root:
61
61
 
62
62
  ```shell
63
- cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
63
+ cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_SQLITE=ON
64
64
  cmake --build build --target python
65
65
  ```
66
66
 
@@ -20,9 +20,9 @@
20
20
 
21
21
  # This file is part of 'miniver': https://github.com/jbweston/miniver
22
22
 
23
- version = "1.2.0"
23
+ version = "1.4.0"
24
24
 
25
25
  # These values are only set if the distribution was created with 'git archive'
26
26
  # NOTE: must add an export-subst to .gitattributes!
27
- refnames = "HEAD, tag: apache-arrow-adbc-14-rc0, origin/maint-14"
28
- git_hash = "15f330ce9"
27
+ refnames = "HEAD, tag: apache-arrow-adbc-16-rc3, origin/maint-16"
28
+ git_hash = "05c33a770"
@@ -1,12 +1,12 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: adbc-driver-sqlite
3
- Version: 1.2.0
3
+ Version: 1.4.0
4
4
  Summary: An ADBC driver for working with SQLite.
5
5
  Author-email: Apache Arrow Developers <dev@arrow.apache.org>
6
6
  License: Apache-2.0
7
7
  Project-URL: homepage, https://arrow.apache.org/adbc/
8
8
  Project-URL: repository, https://github.com/apache/arrow-adbc
9
- Requires-Python: >=3.8
9
+ Requires-Python: >=3.9
10
10
  Description-Content-Type: text/markdown
11
11
  License-File: LICENSE.txt
12
12
  License-File: NOTICE.txt
@@ -82,7 +82,7 @@ For users building from the arrow-adbc source repository, you can alternately us
82
82
  For example, assuming you run cmake from the project root:
83
83
 
84
84
  ```shell
85
- cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
85
+ cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_SQLITE=ON
86
86
  cmake --build build --target python
87
87
  ```
88
88
 
@@ -21,7 +21,7 @@ description = "An ADBC driver for working with SQLite."
21
21
  authors = [{name = "Apache Arrow Developers", email = "dev@arrow.apache.org"}]
22
22
  license = {text = "Apache-2.0"}
23
23
  readme = "README.md"
24
- requires-python = ">=3.8"
24
+ requires-python = ">=3.9"
25
25
  dynamic = ["version"]
26
26
  dependencies = [
27
27
  "adbc-driver-manager",