Skip to content

Commit

Permalink
installation: temporarily pin SQLAlchemy<1.4
Browse files Browse the repository at this point in the history
* Issue caused by an imcompatibility between sqlalchemy-utils
  and latest SQLAlchemy 1.4 (see more here
  kvesteri/sqlalchemy-utils#505).
  • Loading branch information
Diego Rodriguez committed Mar 17, 2021
1 parent 0f3affb commit 221ee72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

Version 0.7.3 (2021-03-17)
--------------------------

- Fixes REANA installation by pinning SQLAlchemy version less than 1.4.0 due to https://github.com/kvesteri/sqlalchemy-utils/issues/505.

Version 0.7.2 (2021-02-22)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
install_requires = [
"alembic>=1.4.2",
"psycopg2-binary>=2.6.1",
"SQLAlchemy>=1.2.7",
"SQLAlchemy>=1.2.7,<1.4.0",
'sqlalchemy-utils>=0.35.0 ; python_version>="3"',
'sqlalchemy-utils<=0.36.3 ; python_version=="2.7"',
"cryptography>=2.9.2", # Required by sqlalchemy_utils.EncryptedType
Expand Down

0 comments on commit 221ee72

Please sign in to comment.