Skip to content

Commit

Permalink
[Bugfix] Fix numpy<2.0; setuptools-git-versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
KolinGuo committed Aug 10, 2024
1 parent ad371de commit 16b0d34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning<2", "libclang==11.0.1"]
requires = ["setuptools>=61.0", "setuptools-git-versioning>=2.0,<3", "libclang==11.0.1"]
build-backend = "setuptools.build_meta"

[project]
name = "mplib"
dynamic = ["version"]
dependencies = ["numpy", "toppra >= 0.4.0", "transforms3d >= 0.3.1"]
dependencies = ["numpy<2.0", "toppra >= 0.4.0", "transforms3d >= 0.3.1"]
requires-python = ">=3.8"
authors = [
{name="Minghua Liu", email = "minghua@ucsd.edu"},
Expand Down

0 comments on commit 16b0d34

Please sign in to comment.