From a8595409383b6abc6f483404f039108c2053d0b7 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] fix: support ci runner openssl<1.1.1 and cythonization for 3.12 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bd93a2fb7..c843039aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -262,7 +262,7 @@ where = ["."] [build-system] requires = [ "setuptools", - "cython>=0.25,<3.0", + "cython>=0.25", "spacy>=3.2,<4.0", # to update from https://github.com/scipy/oldest-supported-numpy/blob/main/setup.cfg # while setting numpy >= 1.15.0 due to spacy reqs @@ -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"