Skip to content

Commit

Permalink
Fix version pinning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icemac committed Sep 19, 2024
1 parent bebb299 commit 1787905
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Changes
3.2 (unreleased)
----------------

- Nothing changed yet.

- SQLAlchemy's versions 2.0.32 up to 2.0.35 run into dead locks when running
the tests on Python 3.11+, so excluding them from the list of supported
versions.

3.1 (2023-09-12)
----------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
install_requires=[
'packaging',
'setuptools',
'SQLAlchemy>=1.1,!=1.4.0,!=1.4.1,!=1.4.2,!=1.4.3,!=1.4.4,!=1.4.5,!=1.4.6,<2.0.32', # noqa: E501 line too long
'SQLAlchemy>=1.1,!=1.4.0,!=1.4.1,!=1.4.2,!=1.4.3,!=1.4.4,!=1.4.5,!=1.4.6,!=2.0.32,!=2.0.33,!=2.0.34,!=2.0.35', # noqa: E501 line too long
'transaction>=1.6.0',
'zope.interface>=3.6.0',
],
Expand Down

0 comments on commit 1787905

Please sign in to comment.