File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ Bug fixes
2525Unavoidable breaking changes
2626............................
2727
28+ - pymongocrypt 1.3.0 or later is now required for client side field level
29+ encryption support.
2830- :meth: `~pymongo.collection.Collection.estimated_document_count ` now always uses
2931 the `count `_ command. Due to an oversight in versions 5.0.0-5.0.8 of MongoDB,
3032 the count command was not included in V1 of the :ref: `versioned-api-ref `.
@@ -317,7 +319,7 @@ Breaking Changes in 4.0
317319 :attr: `~pymongo.mongo_client.MongoClient.address ` which can change.
318320- Removed the `disable_md5 ` parameter for :class: `~gridfs.GridFSBucket ` and
319321 :class: `~gridfs.GridFS `. See :ref: `removed-gridfs-checksum ` for details.
320- - PyMongoCrypt 1.2.0 or later is now required for client side field level
322+ - pymongocrypt 1.2.0 or later is now required for client side field level
321323 encryption support.
322324
323325Notable improvements
@@ -356,7 +358,7 @@ Changes in Version 3.12.0
356358.. warning :: PyMongo now allows insertion of documents with keys that include
357359 dots ('.') or start with dollar signs ('$').
358360
359- - PyMongoCrypt 1.1.0 or later is now required for client side field level
361+ - pymongocrypt 1.1.0 or later is now required for client side field level
360362 encryption support.
361363- Iterating over :class: `gridfs.grid_file.GridOut ` now moves through
362364 the file line by line instead of chunk by chunk, and does not
Original file line number Diff line number Diff line change @@ -276,9 +276,7 @@ def build_extension(self, ext):
276276 pyopenssl_reqs .append ("certifi" )
277277
278278extras_require = {
279- "encryption" : [
280- "pymongocrypt@git+ssh://git@github.com/mongodb/libmongocrypt.git@161dbc8ae#subdirectory=bindings/python"
281- ],
279+ "encryption" : ["pymongocrypt>=1.3.0,<2.0.0" ],
282280 "ocsp" : pyopenssl_reqs ,
283281 "snappy" : ["python-snappy" ],
284282 "zstd" : ["zstandard" ],
You can’t perform that action at this time.
0 commit comments