From 75c9cbe054923449139343fb527ff9e8d3ff779b Mon Sep 17 00:00:00 2001 From: Jon Holba Date: Fri, 23 Jan 2026 08:40:28 +0100 Subject: [PATCH] Fix testpath and move cibuildwheel req --- pyproject.toml | 2 +- requirements.txt | 1 + setup.py | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bfcf08c43..35995347f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ format = ["cmake-format", "clang-format", "black"] [tool.pytest.ini_options] addopts = "--strict-markers" -testpaths = ["tests/python"] +testpaths = ["tests"] [tool.cibuildwheel] build-frontend = "build[uv]" diff --git a/requirements.txt b/requirements.txt index 79939c8eb..ed06965d1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +cibuildwheel cmake<4 cwrap ninja diff --git a/setup.py b/setup.py index 5a6346ce3..f834d3772 100644 --- a/setup.py +++ b/setup.py @@ -149,7 +149,6 @@ def utility_wrappers(): "pandas", "natsort", "resfo-utilities>=0.4.0", - "cibuildwheel", ], setup_requires=["conan>=2"], entry_points={"console_scripts": utility_wrappers()},