Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install clang-tidy ninja-build libopenblas-dev liblapack-dev
pip install nanobind scikit-build-core[pyproject]
pip install nanobind!=2.10.0 scikit-build-core[pyproject]
- name: Run clang-tidy (C++)
working-directory: cpp
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dolfinx-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
with:
path: ./dolfinx
repository: FEniCS/dolfinx
ref: main
ref: schnellerhase/nanobind-broken
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
ref: schnellerhase/nanobind-broken
ref: main

- name: Get DOLFINx
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
build:
name: Build and test (MacOS)
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Install dependencies
run: sudo apt-get install -y libopenblas-dev liblapack-dev ninja-build
- name: Install Python dependencies
run: pip install nanobind scikit-build-core[pyproject]
run: pip install nanobind!=2.10.0 scikit-build-core[pyproject]
- name: Install Basix
run: pip install --no-build-isolation .

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["scikit-build-core[pyproject]>=0.10.0", "nanobind>=2.5.0"]
requires = ["scikit-build-core[pyproject]>=0.10.0", "nanobind>=2.5.0,!=2.10.0"]
build-backend = "scikit_build_core.build"

[project]
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["scikit-build-core[pyproject]>=0.10.0", "nanobind>=2.5.0"]
requires = ["scikit-build-core[pyproject]>=0.10.0", "nanobind>=2.5.0,!=2.10.0"]
build-backend = "scikit_build_core.build"

[project]
Expand Down
Loading