From 27f19ced35a47fcfdcb5198d19b335c01f5a8afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Sat, 24 Feb 2024 02:23:41 +0100 Subject: [PATCH] ci: cap urllib3 in ci to support runner openssl<1.1.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bd93a2fb7..334eeabf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -381,6 +381,6 @@ skip = [ "*-manylinux_s390x", # Skip slow Linux ] -before-test = "pip install pytest" +before-test = 'pip install pytest "urllib3<2"' test-extras = "ml" test-command = "pytest {project}/tests/pipelines/test_pipelines.py"