Skip to content

Commit bbe364f

Browse files
authored
PYTHON-3294 Bump minimum pymongocrypt version to 1.3.0 (#1007)
1 parent 61add4a commit bbe364f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/changelog.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Bug fixes
2525
Unavoidable 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

323325
Notable 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

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,9 +276,7 @@ def build_extension(self, ext):
276276
pyopenssl_reqs.append("certifi")
277277

278278
extras_require = {
279-
"encryption": [
280-
"pymongocrypt@git+ssh://[email protected]/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"],

0 commit comments

Comments
 (0)