From 42244113984e37499897aa6afe4d81f87859f108 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..c6bde1f2d 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"