From 34902a12d9fa3de6d56ab8c6f3bb6642c03e9036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20C=2E=20Riven=C3=A6s?= Date: Sun, 22 Oct 2023 20:45:00 +0200 Subject: [PATCH] BLD: limit scikit-build-core to < 0.6.0 Since ``pip install -e .`` gave errors in tests with scikit-build-core==0.6.0 for unknown reasons --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 41fda305a..f4702b4d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "scikit-build-core[pyproject]", + "scikit-build-core[pyproject]<0.6.0", "swig", "numpy==1.19.2; python_version == '3.8'", "numpy==1.19.5; python_version == '3.9'",