Skip to content

Commit

Permalink
Pin SQLAlchemy to < 1.4 to prevent no longer working private import i…
Browse files Browse the repository at this point in the history
…n sqlalchemy-utils.
  • Loading branch information
Andreas Kaiser committed Mar 16, 2021
1 parent 61483bf commit 4d0fa28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Change History

- Fix sanitizer error when values are None (ie nothing to sanitize at all).
- Pin Pyramid to < 2 (for now).
- Pin SQLAlchemy to < 1.4 to prevent no longer working private import in sqlalchemy-utils.

2.0.4 - 2020-11-20
------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
'repoze.lru',
'repoze.workflow>=1.0b1',
'repoze.zcml>=1.0b1',
'sqlalchemy>=1.0.0',
'sqlalchemy>=1.0.0,<1.4', # https://github.com/kvesteri/sqlalchemy-utils/blob/master/sqlalchemy_utils/functions/orm.py#L14 fails on 1.4
'sqlalchemy-utils',
'transaction>=1.1.0',
'unidecode',
Expand Down

0 comments on commit 4d0fa28

Please sign in to comment.