From 54526f51d7e5afeaeec6fb7162069e51643286d0 Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Fri, 11 Apr 2025 13:35:03 +0200 Subject: [PATCH] WIP --- .gitignore | 2 +- pyproject.toml | 2 +- python/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index af3e3b7..fa7e2eb 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,7 @@ Testing/ ctbDict.cpp ctbDict.h - +wheelhouse/ *.pyc */__pycache__/* diff --git a/pyproject.toml b/pyproject.toml index 470d158..502a4d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,9 @@ cmake.verbose = true [tool.scikit-build.cmake.define] AARE_PYTHON_BINDINGS = "ON" -AARE_SYSTEM_LIBRARIES = "ON" AARE_INSTALL_PYTHONEXT = "ON" + [tool.pytest.ini_options] markers = [ "files: marks tests that need additional data (deselect with '-m \"not files\"')", diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 75847a7..376ded5 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,5 +1,5 @@ -find_package (Python 3.10 COMPONENTS Interpreter Development REQUIRED) +find_package (Python 3.10 COMPONENTS Interpreter Development.Module REQUIRED) set(PYBIND11_FINDPYTHON ON) # Needed for RH8 # Download or find pybind11 depending on configuration