PYTHON-2583 Bump minimum required PyMongoCrypt version to 1.1.0 (#576)

This commit is contained in:
Prashant Mital 2021-03-09 12:33:12 -08:00 committed by GitHub
parent de7c7b8be2
commit ec6337e3a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -67,6 +67,8 @@ Breaking Changes in 4.0
:meth:`~pymongo.cursor.Cursor`.
- The "tls" install extra is no longer necessary or supported and will be
ignored by pip.
- PyMongoCrypt 1.1.0 or later is now required for client side field level
encryption support.
Notable improvements
....................

View File

@ -282,7 +282,7 @@ if sys.platform in ('win32', 'darwin'):
pyopenssl_reqs.append('certifi')
extras_require = {
'encryption': ['pymongocrypt<2.0.0'],
'encryption': ['pymongocrypt>=1.1.0,<2.0.0'],
'ocsp': pyopenssl_reqs,
'snappy': ['python-snappy'],
'zstd': ['zstandard'],