summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2022-01-12 23:26:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-01-12 23:53:11 +0000
commit503acbbdd3e02fabb2fbc38c8e499df1d7559500 (patch)
treee231253c586902515503e5a3e2e703af91228da9
parentce789c6c8452ef2f544f54288f20c0e81b6a575d (diff)
downloadmongo-503acbbdd3e02fabb2fbc38c8e499df1d7559500.tar.gz
SERVER-62547 enforce only a minimum pywin32 PIP module version
-rw-r--r--etc/pip/components/platform.req4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/pip/components/platform.req b/etc/pip/components/platform.req
index c5b73def69b..80bde56ed4f 100644
--- a/etc/pip/components/platform.req
+++ b/etc/pip/components/platform.req
@@ -1,3 +1,3 @@
# Platform-specific components
-pypiwin32==223; sys_platform == "win32" and python_version > "3"
-pywin32==225; sys_platform == "win32" and python_version > "3"
+pypiwin32>=223; sys_platform == "win32" and python_version > "3"
+pywin32>=225; sys_platform == "win32" and python_version > "3"