adbc-driver-postgresql 1.2.0__tar.gz → 1.3.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.
- {adbc_driver_postgresql-1.2.0/adbc_driver_postgresql.egg-info → adbc_driver_postgresql-1.3.0}/PKG-INFO +3 -3
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/README.md +1 -1
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/_static_version.py +3 -3
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0/adbc_driver_postgresql.egg-info}/PKG-INFO +3 -3
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/pyproject.toml +1 -1
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/LICENSE.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/MANIFEST.in +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/NOTICE.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/__init__.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/_version.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/dbapi.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql.egg-info/SOURCES.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql.egg-info/dependency_links.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql.egg-info/requires.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql.egg-info/top_level.txt +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/setup.cfg +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/setup.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/tests/test_dbapi.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/tests/test_lowlevel.py +0 -0
- {adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/tests/test_polars.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: adbc-driver-postgresql
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: A libpq-based ADBC driver for working with PostgreSQL.
|
|
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.
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE.txt
|
|
12
12
|
License-File: NOTICE.txt
|
|
@@ -85,7 +85,7 @@ For users building from the arrow-adbc source repository, you can alternately us
|
|
|
85
85
|
For example, assuming you run cmake from the project root:
|
|
86
86
|
|
|
87
87
|
```shell
|
|
88
|
-
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
|
|
88
|
+
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_POSTSGRESQL=ON
|
|
89
89
|
cmake --build build --target python
|
|
90
90
|
```
|
|
91
91
|
|
|
@@ -62,7 +62,7 @@ For users building from the arrow-adbc source repository, you can alternately us
|
|
|
62
62
|
For example, assuming you run cmake from the project root:
|
|
63
63
|
|
|
64
64
|
```shell
|
|
65
|
-
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
|
|
65
|
+
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_POSTSGRESQL=ON
|
|
66
66
|
cmake --build build --target python
|
|
67
67
|
```
|
|
68
68
|
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
|
|
21
21
|
# This file is part of 'miniver': https://github.com/jbweston/miniver
|
|
22
22
|
|
|
23
|
-
version = "1.
|
|
23
|
+
version = "1.3.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-
|
|
28
|
-
git_hash = "
|
|
27
|
+
refnames = "HEAD, tag: apache-arrow-adbc-15-rc1, origin/maint-15"
|
|
28
|
+
git_hash = "4bd94e2f9"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: adbc-driver-postgresql
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.3.0
|
|
4
4
|
Summary: A libpq-based ADBC driver for working with PostgreSQL.
|
|
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.
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
License-File: LICENSE.txt
|
|
12
12
|
License-File: NOTICE.txt
|
|
@@ -85,7 +85,7 @@ For users building from the arrow-adbc source repository, you can alternately us
|
|
|
85
85
|
For example, assuming you run cmake from the project root:
|
|
86
86
|
|
|
87
87
|
```shell
|
|
88
|
-
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON
|
|
88
|
+
cmake -S c -B build --preset debug -DADBC_BUILD_PYTHON=ON -DADBC_DRIVER_POSTSGRESQL=ON
|
|
89
89
|
cmake --build build --target python
|
|
90
90
|
```
|
|
91
91
|
|
|
@@ -21,7 +21,7 @@ description = "A libpq-based ADBC driver for working with PostgreSQL."
|
|
|
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.
|
|
24
|
+
requires-python = ">=3.9"
|
|
25
25
|
dynamic = ["version"]
|
|
26
26
|
dependencies = [
|
|
27
27
|
"adbc-driver-manager",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/__init__.py
RENAMED
|
File without changes
|
{adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/_version.py
RENAMED
|
File without changes
|
{adbc_driver_postgresql-1.2.0 → adbc_driver_postgresql-1.3.0}/adbc_driver_postgresql/dbapi.py
RENAMED
|
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
|