changeset 0bbd77676bcc in trytond:5.4
details: https://hg.tryton.org/trytond?cmd=changeset;node=0bbd77676bcc
description:
Required passlib >= 1.7.0
CryptContext.hash (used in User.hash_password) was added on version
1.7.0.
issue9631
review302191003
(grafted from 8d1f0e31a1c686b1aee64a75582c6816361825a4)
diffstat:
setup.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r d75b372f72aa -r 0bbd77676bcc setup.py
--- a/setup.py Thu Sep 24 23:02:14 2020 +0200
+++ b/setup.py Thu Sep 24 23:05:04 2020 +0200
@@ -141,7 +141,7 @@
'python-sql >= 0.5',
'werkzeug',
'wrapt',
- 'passlib',
+ 'passlib >= 1.7.0',
],
extras_require={
'PostgreSQL': pg_require,