From eee23aa6426313758784462fd7bb2771b85f2c29 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Tue, 8 Dec 2020 14:40:37 +0530 Subject: [PATCH] =?UTF-8?q?Fixed=20DLL=20load=20failed=20while=20importing?= =?UTF-8?q?=C2=A0bcrypt.=20Fixes=20#6072?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/en_US/release_notes_4_29.rst | 1 + requirements.txt | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/en_US/release_notes_4_29.rst b/docs/en_US/release_notes_4_29.rst index a323b83fb..5a3eaf334 100644 --- a/docs/en_US/release_notes_4_29.rst +++ b/docs/en_US/release_notes_4_29.rst @@ -34,3 +34,4 @@ Bug fixes | `Issue #5998 `_ - Fixed an issue where schema diff doesn't show the result of compare if source schema has tables with RLS. | `Issue #6003 `_ - Fixed an issue where an illegal argument is showing for trigger SQL when a trigger is created for View. | `Issue #6022 `_ - Fixed an issue where shared servers import is failing. +| `Issue #6072 `_ - Fixed DLL load failed while importing bcrypt. diff --git a/requirements.txt b/requirements.txt index 6295eb324..6b84be991 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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