Skip to content

Commit 3e5c8db

Browse files
committed
bump minimum sqlalchemy to 1.4.23
Fixed regression caused by 🎫`1669` which requires SQLAlchemy objects to support generic type subscripting; for the older SQLAlchemy 1.4 series, this requires version 1.4.23. Changed the minimum requirements in to be for 1.4.23 rather than 1.4.0. Fixes: #1788 Change-Id: I7996ae9cc613208a6ceded6d71afe33d11083034
1 parent b683ad7 commit 3e5c8db

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

docs/build/changelog.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ Changelog
1111
:version: 1.18.2
1212
:released: January 28, 2026
1313

14-
.. change::
15-
:tags: change, platforms
16-
17-
For release 1.18.2, if still using the SQLAlchemy 1.4 series, **version
18-
1.4.23 at minimum is required**. It's strongly recommended to be on
19-
the latest (and final) release in the 1.4 series which is version
20-
1.4.54.
21-
2214
.. change::
2315
:tags: usecase, operations
2416
:tickets: 1232

docs/build/unreleased/1788.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.. change::
2+
:tags: bug, general
3+
:tickets: 1788
4+
5+
Fixed regression caused by :ticket:`1669` which requires SQLAlchemy objects
6+
to support generic type subscripting; for the older SQLAlchemy 1.4 series,
7+
this requires version 1.4.23. Changed the minimum requirements in to be
8+
for 1.4.23 rather than 1.4.0.
9+
10+

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
]
2727
requires-python = ">=3.10"
2828
dependencies = [
29-
"SQLAlchemy>=1.4.0",
29+
"SQLAlchemy>=1.4.23",
3030
"Mako",
3131
"typing-extensions>=4.12",
3232
"tomli;python_version<'3.11'",

0 commit comments

Comments
 (0)