From d503e026fdb6820716333c73f1ae953e1a2d46c1 Mon Sep 17 00:00:00 2001 From: Denys Fedoryshchenko Date: Thu, 19 Sep 2024 10:09:22 +0300 Subject: [PATCH] fix(requirements.txt): Add correct pymongo/motor dependencies pymongo got updated and it was not fixed version in dependencies, as result it became incompatible with motor. Trying to fix versions to working ones. Signed-off-by: Denys Fedoryshchenko --- docker/api/requirements.txt | 3 ++- pyproject.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/api/requirements.txt b/docker/api/requirements.txt index bb5e7653..264e5a42 100644 --- a/docker/api/requirements.txt +++ b/docker/api/requirements.txt @@ -4,7 +4,8 @@ fastapi-pagination==0.9.3 fastapi-users[beanie, oauth]==10.4.0 fastapi-versioning==0.10.0 MarkupSafe==2.0.1 -motor==3.3.2 +motor==3.6.0 +pymongo==4.9.0 passlib==1.7.4 pydantic==1.10.13 pymongo-migrate==0.11.0 diff --git a/pyproject.toml b/pyproject.toml index 49e9dbd5..04557deb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,8 @@ dependencies = [ "fastapi-users[beanie, oauth] == 10.4.0", "fastapi-versioning == 0.10.0", "MarkupSafe == 2.0.1", - "motor == 3.3.2", + "motor == 3.6.0", + "pymongo == 4.9.0", "passlib == 1.7.4", "pydantic == 1.10.13", "pymongo-migrate == 0.11.0",