We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cb954 commit d1007ecCopy full SHA for d1007ec
.evergreen/scripts/setup_tests.py
@@ -6,6 +6,7 @@
6
import platform
7
import shutil
8
import stat
9
+import sys
10
import tarfile
11
from pathlib import Path
12
from urllib import request
@@ -152,14 +153,13 @@ def handle_test_env() -> None:
152
153
SSL = "ssl" if opts.ssl else "nossl"
154
TEST_ARGS = ""
155
- import sys
156
-
157
- print(os.environ["UV_PYTHON"])
158
- sys.exit(1)
159
160
# Start compiling the args we'll pass to uv.
161
UV_ARGS = ["--extra test --no-group dev"]
162
+ # TODO: remove as part of PYTHON-5561
+ if sys.implementation.name.lower() == "pypy" and sys.version_info < (3, 11):
+ UV_ARGS.append("--with cryptography<46")
+
163
test_title = test_name
164
if sub_test_name:
165
test_title += f" {sub_test_name}"
0 commit comments