Skip to content
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

MOTOR-952 Bump PyMongo minimum to 4.1 #169

Merged
merged 1 commit into from Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -98,7 +98,7 @@ Motor works in all the environments officially supported by Tornado or by
asyncio. It requires:

* Unix (including macOS) or Windows.
* PyMongo_ >=4,<5
* PyMongo_ >=4.1,<5
* Python 3.7+

Optional dependencies:
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Expand Up @@ -19,7 +19,7 @@ Motor works in all the environments officially supported by Tornado or by
asyncio. It requires:

* Unix (including macOS) or Windows.
* PyMongo_ >=4,<5
* PyMongo_ >=4.1,<5
* Python 3.7+

Optional dependencies:
Expand Down
4 changes: 2 additions & 2 deletions doc/requirements.rst
Expand Up @@ -4,7 +4,7 @@ Requirements
The current version of Motor requires:

* CPython 3.7 and later.
* PyMongo_ 4.0 and later.
* PyMongo_ 4.1 and later.

Motor can integrate with either Tornado or asyncio.

Expand Down Expand Up @@ -47,7 +47,7 @@ Motor and PyMongo
+-------------------+-----------------+
| 2.5 | 3.12+ |
+-------------------+-----------------+
| 3.0 | 4.0+ |
| 3.0 | 4.1+ |
+-------------------+-----------------+

Motor and MongoDB
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -36,7 +36,7 @@
with open("README.rst") as readme:
long_description = readme.read()

pymongo_ver = ">=4,<5"
pymongo_ver = ">=4.1,<5"

install_requires = ["pymongo" + pymongo_ver]

Expand Down