From 469d4bd8adabd0533b28645a4f050e42d069da22 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 1 Feb 2021 00:26:26 -0500 Subject: [PATCH] Update requirements.txt to include pyldap and update comments --- api/requirements.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/api/requirements.txt b/api/requirements.txt index e6bfde6..f7f9b7a 100644 --- a/api/requirements.txt +++ b/api/requirements.txt @@ -1,3 +1,4 @@ +# The Python virtual environment should be managed via the venv-manager utility, not directly by pip. # See: https://pip.pypa.io/en/stable/reference/pip_install/#example-requirements-file # General Utilities @@ -10,6 +11,10 @@ python-dotenv Flask-RESTful python-dateutil Flask-JWT-Extended -# Prevent upgrade to 2.x until Flask-JWT-Extended is updated to support it +# Flask-JWT-Extended doesn't support PyJWT 2.x as of 3.25.0 +# Prevent upgrade to PyJWT 2.x until Flask-JWT-Extended is updated to support it. +# Check: https://github.com/vimalloc/flask-jwt-extended/tags PyJWT == 1.* +# Specify pyldap version for custom build. This is not installed by pip. +pyldap == 3.3.1 easyad \ No newline at end of file