Skip to content

Commit

Permalink
[pixi] Make numpy as dep
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Mar 14, 2024
1 parent 8bf4c98 commit dfb94f4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pagmo = ">=2.19.0,<2.20"
glfw = ">=3.4,<4"
glew = ">=2.1.0,<2.2"
pyopengl = ">=3.1.6,<3.2"
numpy = ">=1.26.4,<1.27"

[build-dependencies]
cmake = "3.22.*"
Expand All @@ -42,7 +43,6 @@ setuptools = ">=69.1.1,<69.2"
black = ">=24.2.0,<24.3"
isort = ">=5.13.2,<5.14"
pip = ">=24.0,<25"
numpy = ">=1.26.4,<1.27"

[target.linux-64.dependencies]
freeglut = ">=3.2.2,<3.3"
Expand All @@ -59,6 +59,9 @@ build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
test = { cmd = "ctest --test-dir build --rerun-failed --output-on-failure", depends_on = [
"build",
] }
test_dartpy = { cmd = "cmake --build build -j4 --target pytest", depends_on = [
"configure",
] }
test_all = { cmd = "cmake --build build -j4 --target ALL", depends_on = [
"configure",
] }
Expand All @@ -77,6 +80,9 @@ build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
test = { cmd = "ctest --test-dir build --rerun-failed --output-on-failure", depends_on = [
"build",
] }
test_dartpy = { cmd = "cmake --build build -j4 --target pytest", depends_on = [
"configure",
] }
test_all = { cmd = "cmake --build build -j4 --target ALL", depends_on = [
"configure",
] }
Expand All @@ -95,6 +101,9 @@ build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
test = { cmd = "ctest --test-dir build --rerun-failed --output-on-failure", depends_on = [
"build",
] }
test_dartpy = { cmd = "cmake --build build -j4 --target pytest", depends_on = [
"configure",
] }
test_all = { cmd = "cmake --build build -j4 --target ALL", depends_on = [
"configure",
] }
Expand All @@ -116,6 +125,9 @@ build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
test = { cmd = "ctest --test-dir build --build-config Release --rerun-failed --output-on-failure", depends_on = [
"build",
] }
test_dartpy = { cmd = "cmake --build build --config Release -j4 --target pytest", depends_on = [
"configure",
] }
test_all = { cmd = "cmake --build build --config Release -j4 --target ALL", depends_on = [
"configure",
] }
Expand Down

0 comments on commit dfb94f4

Please sign in to comment.