Skip to content

Commit

Permalink
Synchronize with scikit-build
Browse files Browse the repository at this point in the history
scikit-build commit 94089992b353ea3e4b4c2f118ea1987ca54ecbb8:
skbuild/setuptools_wrap.py:_classify_installed_files
    cmake_install_dir -> _cmake_install_dir

This allows tracking scikit-build versions >= 0.13.2. The dependencies
file has been updated.
  • Loading branch information
Yclept Nemo authored and Yclept Nemo committed Mar 27, 2022
1 parent 8880543 commit 96cffde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
@@ -1,6 +1,7 @@
[build-system]
requires = [
"setuptools", "wheel", "scikit-build", "cmake", "pip",
"setuptools", "wheel", "cmake", "pip",
"scikit-build>=0.13.2",
"numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.14.5; python_version=='3.7' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.17.3; python_version=='3.8' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -451,7 +451,7 @@ def _classify_installed_files_override(
data_files,
# To get around a check that prepends source dir to paths and breaks package detection code.
cmake_source_dir="",
cmake_install_dir=cmake_install_reldir,
_cmake_install_dir=cmake_install_reldir,
)


Expand Down

0 comments on commit 96cffde

Please sign in to comment.