diff --git a/CHANGES.rst b/CHANGES.rst index 58a3923b..1bef23d7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,6 +11,7 @@ Version history ``sqlalchemy-citext``, resolving ``PackageNotFoundError`` (PR by @oaimtiaz) - Prevent double pluralization (PR by @dkratzert) - Fixes DOMAIN extending JSON/JSONB data types (PR by @sheinbergon) +- Temporarily restrict SQLAlchemy version to 2.0.41 (PR by @sheinbergon) **3.0.0** diff --git a/pyproject.toml b/pyproject.toml index e70207db..12cf86c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ ] requires-python = ">=3.9" dependencies = [ - "SQLAlchemy >= 2.0.29", + "SQLAlchemy >= 2.0.29,<2.0.42", "inflect >= 4.0.0", "importlib_metadata; python_version < '3.10'", ]