From ca8cd5debdbc30132c5568e7c89942b3b7163d0a Mon Sep 17 00:00:00 2001 From: Beau Breon Date: Wed, 5 Feb 2020 01:22:32 -0700 Subject: [PATCH] Update pyproject.toml to use passlib 1.7.2 (#98) I was getting DepricationWarnings from using passlib 1.7.1. It seems like Pipfile has already been updated for 1.7.2 but pyproject.toml got left behind. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index af179f7d..17b41452 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ description-file = "README.md" requires-python = ">=3.7" requires = [ "fastapi ==0.47.1", - "passlib[bcrypt] ==1.7.1", + "passlib[bcrypt] ==1.7.2", "email-validator ==1.0.5", "pyjwt ==1.7.1", "python-multipart ==0.0.5",