-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(requirements.txt): Add correct pymongo/motor dependencies #548
Conversation
657ed64
to
ddda722
Compare
docker/api/requirements.txt
Outdated
@@ -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 | |||
pymongo==4.9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pymongo==4.9 | |
pymongo==4.9.0 |
pyproject.toml
Outdated
"pymongo == 4.9.0", | ||
"motor == 3.6.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it work if we keep packages in alphabetical order or do we need to pin pymongo
first?
"pymongo == 4.9.0", | |
"motor == 3.6.0", | |
"motor == 3.6.0", | |
"pymongo == 4.9.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, seems there is no requirements, so we can reorder it alphabetically
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]>
ddda722
to
8db1b62
Compare
LGTM. Let's wait for staging results. |
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.