From 0efdddc7b1198ae52517969bef537c08135fd2c6 Mon Sep 17 00:00:00 2001 From: gadial Date: Tue, 4 Feb 2025 14:23:31 +0200 Subject: [PATCH] Try to explicitly install conan --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 05262c5558..e4f3a61707 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ test-command = "python {project}/tools/verify_wheels.py" # Numpy 1.22 there are no i686 wheels, so we force pip to use older ones without # restricting any dependencies that Numpy and Scipy might have. before-test = "pip install --only-binary=numpy,scipy numpy scipy" -before-build = "conan profile detect --force" +before-build = "pip install conan && conan profile detect --force" [tool.cibuildwheel.linux] before-all = "sed -i -e 's/^mirrorlist/#mirrorlist/' -e 's/^#baseurl/baseurl/' -e 's/mirror.centos.org/vault.centos.org/' /etc/yum.repos.d/*.repo && yum install -y openblas-devel"