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 d1007ec commit 3a89577Copy full SHA for 3a89577
.evergreen/scripts/setup_tests.py
@@ -157,8 +157,9 @@ def handle_test_env() -> None:
157
UV_ARGS = ["--extra test --no-group dev"]
158
159
# TODO: remove as part of PYTHON-5561
160
- if sys.implementation.name.lower() == "pypy" and sys.version_info < (3, 11):
161
- UV_ARGS.append("--with cryptography<46")
+ if test_name in ["encryption", "oscp"]:
+ if sys.implementation.name.lower() == "pypy" and sys.version_info < (3, 11):
162
+ UV_ARGS.append("--with cryptography<46")
163
164
test_title = test_name
165
if sub_test_name:
0 commit comments