From 4745ef71eaaa805975a5f501ccf21ccf0565b497 Mon Sep 17 00:00:00 2001 From: jorgensd Date: Tue, 28 May 2024 20:27:09 +0000 Subject: [PATCH] Pin nanobind version in build requirements and bump version --- python/pyproject.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 7307af21..002164cb 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,11 +1,7 @@ -# The DOLFINx Python interface must be built without build isolation (PEP517) -# due to its runtime and build time dependency on system built petsc4py and -# mpi4py. -# pip install -r build-requirements.txt [build-system] requires = [ "scikit-build-core[pyproject]", - "nanobind>=1.8.0", + "nanobind>=1.8.0,<2.0.0", "petsc4py", "mpi4py", ] @@ -13,7 +9,7 @@ build-backend = "scikit_build_core.build" [project] name = "dolfinx_mpc" -version = "0.8.0" +version = "0.8.1" description = "DOLFINx_MPC Python interface" readme = "README.md" requires-python = ">=3.8.0"