Skip to content

Commit

Permalink
fix(requirements.txt): Add correct pymongo/motor dependencies
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
nuclearcat committed Sep 23, 2024
1 parent 07bb3cb commit d503e02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit d503e02

Please sign in to comment.