Skip to content

Commit

Permalink
Fixing nanobind compilation issue on older mac OS (#86)
Browse files Browse the repository at this point in the history
* Fixing nanobind compilation issue

* Don't debug
  • Loading branch information
dfm authored Apr 22, 2024
1 parent 816b4d5 commit 21e3528
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ sdist.include = ["src/jax_finufft/jax_finufft_version.py"]
wheel.install-dir = "jax_finufft"
minimum-version = "0.5"
build-dir = "build/{wheel_tag}"
wheel.py-api = "cp312"

# For debugging:
# cmake.build-type = "Debug"
Expand All @@ -44,6 +45,10 @@ before-all = "yum install -y fftw-devel"
[tool.cibuildwheel.macos]
before-all = "brew install fftw"

# Needed for full C++17 support
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"

[tool.black]
target-version = ["py39"]
line-length = 88
Expand Down

0 comments on commit 21e3528

Please sign in to comment.