Skip to content

Commit d3cbc3c

Browse files
committed
Pin SQLAlchemy to 2.0.44
Why these changes are being introduced: We were encountering some errors after SQLAlchemy automatically updated to 2.0.45 that mentioned "pg_catalog" and "pg_collation". We use duckdb_engine, a SQLAlchemy engine, to interact with our DuckDB connection. It looks as though SQLAlchemy 2.0.45, for reasons unknown at this time, break that engine, at least the table reflection which we use on TIMDEXDataset inititialization. How this addresses that need: * Pins SQLAlchemy to 2.0.44 until we learn more or a new version is released. Side effects of this change: * SQLAlchemy will be pinned until touched again. Relevant ticket(s): * None
1 parent 2ff19da commit d3cbc3c

File tree

4 files changed

+327
-324
lines changed

4 files changed

+327
-324
lines changed

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ duckdb = "*"
1010
duckdb-engine = "*"
1111
pandas = "*"
1212
pyarrow = "*"
13-
sqlalchemy = "*"
13+
sqlalchemy = "==2.0.44"
1414

1515
[dev-packages]
1616
black = "*"
@@ -29,4 +29,4 @@ setuptools = "*"
2929
pip-audit = "*"
3030

3131
[requires]
32-
python_version = "3.12"
32+
python_version = "3.12"

0 commit comments

Comments
 (0)