Skip to content

Commit 01f1a82

Browse files
committed
Undo sqlalchemy
1 parent d136d39 commit 01f1a82

11 files changed

+14
-14
lines changed

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies:
5252
- pyxlsb=1.0.10
5353
- s3fs=2024.2.0
5454
- scipy=1.12.0
55-
- sqlalchemy=2.0.25
55+
- sqlalchemy=2.0.0
5656
- tabulate=0.9.0
5757
- xarray=2024.1.1
5858
- xlrd=2.0.1

ci/deps/actions-310.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies:
5050
- pyxlsb>=1.0.10
5151
- s3fs>=2024.2.0
5252
- scipy>=1.12.0
53-
- sqlalchemy>=2.0.25
53+
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0
5555
- xarray>=2024.1.1, <=2024.9.0
5656
- xlrd>=2.0.1

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies:
5151
- pyxlsb>=1.0.10
5252
- s3fs>=2024.2.0
5353
- scipy>=1.12.0
54-
- sqlalchemy>=2.0.25
54+
- sqlalchemy>=2.0.0
5555
- tabulate>=0.9.0
5656
- xarray>=2024.1.1, <=2024.9.0
5757
- xlrd>=2.0.1

ci/deps/actions-311.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies:
5050
- pyxlsb>=1.0.10
5151
- s3fs>=2024.2.0
5252
- scipy>=1.12.0
53-
- sqlalchemy>=2.0.25
53+
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0
5555
- xarray>=2024.1.1, <=2024.9.0
5656
- xlrd>=2.0.1

ci/deps/actions-312.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies:
5050
- pyxlsb>=1.0.10
5151
- s3fs>=2024.2.0
5252
- scipy>=1.12.0
53-
- sqlalchemy>=2.0.25
53+
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0
5555
- xarray>=2024.1.1, <=2024.9.0
5656
- xlrd>=2.0.1

ci/deps/circle-311-arm64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies:
5050
- pyxlsb>=1.0.10
5151
- s3fs>=2024.2.0
5252
- scipy>=1.12.0
53-
- sqlalchemy>=2.0.25
53+
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0
5555
- xarray>=2024.1.1, <2024.10.0
5656
- xlrd>=2.0.1

doc/source/getting_started/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Traditional drivers are installable with ``pip install "pandas[postgresql, mysql
287287
================================================================== ================== =============== ============================================
288288
Dependency Minimum Version pip extra Notes
289289
================================================================== ================== =============== ============================================
290-
`SQLAlchemy <https://github.com/sqlalchemy/sqlalchemy>`__ 2.0.25 postgresql, SQL support for databases other than sqlite
290+
`SQLAlchemy <https://github.com/sqlalchemy/sqlalchemy>`__ 2.0.0 postgresql, SQL support for databases other than sqlite
291291
mysql,
292292
sql-other
293293
`psycopg2 <https://github.com/psycopg/psycopg2>`__ 2.9.6 postgresql PostgreSQL engine for sqlalchemy

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies:
5353
- pyxlsb>=1.0.10
5454
- s3fs>=2024.2.0
5555
- scipy>=1.12.0
56-
- sqlalchemy>=2.0.25
56+
- sqlalchemy>=2.0.0
5757
- tabulate>=0.9.0
5858
- xarray>=2024.1.1, <=2024.9.0
5959
- xlrd>=2.0.1

pandas/compat/_optional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"pyxlsb": "1.0.10",
4848
"s3fs": "2024.2.0",
4949
"scipy": "1.12.0",
50-
"sqlalchemy": "2.0.25",
50+
"sqlalchemy": "2.0.0",
5151
"tables": "3.8.0",
5252
"tabulate": "0.9.0",
5353
"xarray": "2024.1.1",

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ hdf5 = [# blosc only available on conda (https://github.com/Blosc/python-blosc/i
7272
#'blosc>=1.20.1',
7373
'tables>=3.8.0']
7474
spss = ['pyreadstat>=1.2.6']
75-
postgresql = ['SQLAlchemy>=2.0.25', 'psycopg2>=2.9.6', 'adbc-driver-postgresql>=0.10.0']
76-
mysql = ['SQLAlchemy>=2.0.25', 'pymysql>=1.1.0']
77-
sql-other = ['SQLAlchemy>=2.0.25', 'adbc-driver-postgresql>=0.10.0', 'adbc-driver-sqlite>=0.8.0']
75+
postgresql = ['SQLAlchemy>=2.0.0', 'psycopg2>=2.9.6', 'adbc-driver-postgresql>=0.10.0']
76+
mysql = ['SQLAlchemy>=2.0.0', 'pymysql>=1.1.0']
77+
sql-other = ['SQLAlchemy>=2.0.0', 'adbc-driver-postgresql>=0.10.0', 'adbc-driver-sqlite>=0.8.0']
7878
html = ['beautifulsoup4>=4.12.3', 'html5lib>=1.1', 'lxml>=5.0.1']
7979
xml = ['lxml>=5.0.1']
8080
plot = ['matplotlib>=3.8.3']
@@ -113,7 +113,7 @@ all = ['adbc-driver-postgresql>=0.10.0',
113113
'qtpy>=2.3.0',
114114
'scipy>=1.12.0',
115115
's3fs>=2024.2.0',
116-
'SQLAlchemy>=2.0.25',
116+
'SQLAlchemy>=2.0.0',
117117
'tables>=3.8.0',
118118
'tabulate>=0.9.0',
119119
'xarray>=2024.1.1',

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pytz>=2023.4
4242
pyxlsb>=1.0.10
4343
s3fs>=2024.2.0
4444
scipy>=1.12.0
45-
SQLAlchemy>=2.0.25
45+
SQLAlchemy>=2.0.0
4646
tabulate>=0.9.0
4747
xarray>=2024.1.1, <=2024.9.0
4848
xlrd>=2.0.1

0 commit comments

Comments
 (0)