aboutsummaryrefslogtreecommitdiff
path: root/bundle/py2exe.py
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2024-06-01 13:57:23 -0500
committerGitHub <noreply@github.com>2024-06-01 18:57:23 +0000
commitdb50f19d76c6870a5a13d0cab9287d684fd7449a (patch)
treea432b6eeab25de95e38a994401f93f00ab290da1 /bundle/py2exe.py
parent2e5a47da400b645aadbda6afd1156bd89c744f48 (diff)
[rh:requests] Bump minimum `requests` version to 2.32.2 (#10079)
Closes #10078 Authored by: bashonly
Diffstat (limited to 'bundle/py2exe.py')
-rwxr-xr-xbundle/py2exe.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundle/py2exe.py b/bundle/py2exe.py
index 281167492..5fbe55e46 100755
--- a/bundle/py2exe.py
+++ b/bundle/py2exe.py
@@ -42,9 +42,9 @@ def main():
# py2exe cannot import Crypto
'Crypto',
'Cryptodome',
- # py2exe appears to confuse this with our socks library.
- # We don't use pysocks and urllib3.contrib.socks would fail to import if tried.
- 'urllib3.contrib.socks'
+ # requests >=2.32.0 breaks py2exe builds due to certifi dependency
+ 'requests',
+ 'urllib3'
],
'dll_excludes': ['w9xpopen.exe', 'crypt32.dll'],
# Modules that are only imported dynamically must be added here