Skip to content

Commit 09fd5e0

Browse files
authored
DEPS: bump adbc-driver-postgresql min version to 0.10.0 (#58010)
1 parent f91d39e commit 09fd5e0

File tree

12 files changed

+20
-18
lines changed

12 files changed

+20
-18
lines changed

ci/deps/actions-310.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies:
5757
- zstandard>=0.19.0
5858

5959
- pip:
60-
- adbc-driver-postgresql>=0.8.0
60+
- adbc-driver-postgresql>=0.10.0
6161
- adbc-driver-sqlite>=0.8.0
6262
- tzdata>=2022.7
6363
- pytest-localserver>=0.7.1

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ dependencies:
7272
- pyyaml
7373
- py
7474
- pip:
75-
- adbc-driver-postgresql>=0.8.0
75+
- adbc-driver-postgresql>=0.10.0
7676
- adbc-driver-sqlite>=0.8.0
7777
- tzdata>=2022.7

ci/deps/actions-311.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ dependencies:
5757
- zstandard>=0.19.0
5858

5959
- pip:
60-
- adbc-driver-postgresql>=0.8.0
60+
- adbc-driver-postgresql>=0.10.0
6161
- adbc-driver-sqlite>=0.8.0
6262
- pytest-localserver>=0.7.1

ci/deps/actions-312.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies:
5757
- zstandard>=0.19.0
5858

5959
- pip:
60-
- adbc-driver-postgresql>=0.8.0
60+
- adbc-driver-postgresql>=0.10.0
6161
- adbc-driver-sqlite>=0.8.0
6262
- tzdata>=2022.7
6363
- pytest-localserver>=0.7.1

ci/deps/actions-39-minimum_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ dependencies:
6060
- zstandard=0.19.0
6161

6262
- pip:
63-
- adbc-driver-postgresql==0.8.0
63+
- adbc-driver-postgresql==0.10.0
6464
- adbc-driver-sqlite==0.8.0
6565
- tzdata==2022.7

ci/deps/actions-39.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ dependencies:
5757
- zstandard>=0.19.0
5858

5959
- pip:
60-
- adbc-driver-postgresql>=0.8.0
60+
- adbc-driver-postgresql>=0.10.0
6161
- adbc-driver-sqlite>=0.8.0
6262
- tzdata>=2022.7
6363
- pytest-localserver>=0.7.1

doc/source/getting_started/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ SQLAlchemy 2.0.0 postgresql, SQL support for dat
346346
sql-other
347347
psycopg2 2.9.6 postgresql PostgreSQL engine for sqlalchemy
348348
pymysql 1.0.2 mysql MySQL engine for sqlalchemy
349-
adbc-driver-postgresql 0.8.0 postgresql ADBC Driver for PostgreSQL
349+
adbc-driver-postgresql 0.10.0 postgresql ADBC Driver for PostgreSQL
350350
adbc-driver-sqlite 0.8.0 sql-other ADBC Driver for SQLite
351351
========================= ================== =============== =============================================================
352352

doc/source/whatsnew/v3.0.0.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,13 @@ For `optional libraries <https://pandas.pydata.org/docs/getting_started/install.
129129
The following table lists the lowest version per library that is currently being tested throughout the development of pandas.
130130
Optional libraries below the lowest tested version may still work, but are not considered supported.
131131

132-
+-----------------+---------------------+
133-
| Package | New Minimum Version |
134-
+=================+=====================+
135-
| fastparquet | 2023.04.0 |
136-
+-----------------+---------------------+
132+
+------------------------+---------------------+
133+
| Package | New Minimum Version |
134+
+========================+=====================+
135+
| fastparquet | 2023.04.0 |
136+
+------------------------+---------------------+
137+
| adbc-driver-postgresql | 0.10.0 |
138+
+------------------------+---------------------+
137139

138140
See :ref:`install.dependencies` and :ref:`install.optional_dependencies` for more.
139141

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ dependencies:
116116
- pygments # Code highlighting
117117

118118
- pip:
119-
- adbc-driver-postgresql>=0.8.0
119+
- adbc-driver-postgresql>=0.10.0
120120
- adbc-driver-sqlite>=0.8.0
121121
- typing_extensions; python_version<"3.11"
122122
- tzdata>=2022.7

pandas/compat/_optional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# deps_minimum.toml & pyproject.toml when updating versions!
2121

2222
VERSIONS = {
23-
"adbc-driver-postgresql": "0.8.0",
23+
"adbc-driver-postgresql": "0.10.0",
2424
"adbc-driver-sqlite": "0.8.0",
2525
"bs4": "4.11.2",
2626
"blosc": "1.21.3",

0 commit comments

Comments
 (0)