Fixed DLL load failed while importing bcrypt. Fixes #6072
parent
bb25e85834
commit
eee23aa642
|
@ -34,3 +34,4 @@ Bug fixes
|
|||
| `Issue #5998 <https://redmine.postgresql.org/issues/5998>`_ - Fixed an issue where schema diff doesn't show the result of compare if source schema has tables with RLS.
|
||||
| `Issue #6003 <https://redmine.postgresql.org/issues/6003>`_ - Fixed an issue where an illegal argument is showing for trigger SQL when a trigger is created for View.
|
||||
| `Issue #6022 <https://redmine.postgresql.org/issues/6022>`_ - Fixed an issue where shared servers import is failing.
|
||||
| `Issue #6072 <https://redmine.postgresql.org/issues/6072>`_ - Fixed DLL load failed while importing bcrypt.
|
||||
|
|
|
@ -38,8 +38,9 @@ psycopg2>=2.8
|
|||
python-dateutil>=2.8.0
|
||||
SQLAlchemy>=1.3.13
|
||||
Flask-Security-Too>=3.0.0
|
||||
bcrypt<=3.1.7
|
||||
cryptography<=3.0;python_version<="3.4"
|
||||
cryptography>=3.2;python_version>"3.4"
|
||||
bcrypt<=3.1.7;python_version<="3.5"
|
||||
bcrypt>=3.2.0;python_version>"3.5"
|
||||
cryptography<=3.0;python_version<="3.5"
|
||||
cryptography>=3.2;python_version>"3.5"
|
||||
sshtunnel>=0.1.5
|
||||
ldap3>=2.5.1
|
||||
|
|
Loading…
Reference in New Issue