From 83435a65d07c1fc197c5702ed285691b8021c476 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 7 Jun 2022 11:26:13 -0400 Subject: [PATCH 1/2] PYTHON-3294 Depend on unreleased PyMongoCrypt 1.3 for beta --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 40fb484ad1..11841da0c1 100755 --- a/setup.py +++ b/setup.py @@ -281,7 +281,9 @@ def build_extension(self, ext): pyopenssl_reqs.append("certifi") extras_require = { - "encryption": ["pymongocrypt>=1.2.0,<2.0.0"], + "encryption": [ + "pymongocrypt@git+https://github.com/mongodb/libmongocrypt.git@1.5.0-rc1#subdirectory=bindings/python" + ], "ocsp": pyopenssl_reqs, "snappy": ["python-snappy"], "zstd": ["zstandard"], From db1cb1b438e6bb3249c0e8db8bb3aa951253e122 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 7 Jun 2022 15:43:14 -0400 Subject: [PATCH 2/2] update install target --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 11841da0c1..655cc5ea0c 100755 --- a/setup.py +++ b/setup.py @@ -282,7 +282,7 @@ def build_extension(self, ext): extras_require = { "encryption": [ - "pymongocrypt@git+https://github.com/mongodb/libmongocrypt.git@1.5.0-rc1#subdirectory=bindings/python" + "pymongocrypt@git+ssh://git@github.com/mongodb/libmongocrypt.git@pymongocrypt-1.3.0b0#subdirectory=bindings/python" ], "ocsp": pyopenssl_reqs, "snappy": ["python-snappy"],