Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 1, 2024
1 parent 6aa1e92 commit 0116563
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions pixi.toml
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
[build-dependencies]
ccache = ">=4.9.1,<4.10"
cmake = ">=3.10"
cxx-compiler = "1.7.0"
ninja = "1.11.*"
pkg-config = ">=0.29.2,<0.30"
pre-commit = ">=3.6.2,<3.7"

[dependencies]
boost = ">=1.80.0,<1.85"
eigen = ">=3.3.0,<3.5"
numpy = ">=1.22.0,<1.27"
python = ">=3.8.0,<3.13"
scipy = ">=1.10.0,<1.13"

[project]
name = "eigenpy"
version = "3.4.0"
description = "Bindings between Numpy and Eigen using Boost.Python"
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
description = "Bindings between Numpy and Eigen using Boost.Python"
license = "BSD-2-Clause"
license-file = "LICENSE"
name = "eigenpy"
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
version = "3.4.0"

[tasks]
clean = { cmd = "rm -rf build" }
build = {cmd = "cmake --build build --target all", depends_on = [
"prepare"
]}
clean = {cmd = "rm -rf build"}
lint = "pre-commit run --all"
prepare = """cmake -G 'Ninja'
-B build
-S .
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCMAKE_BUILD_TYPE=Release
-DGENERATE_PYTHON_STUBS=ON"""
build = { cmd = "cmake --build build --target all", depends_on = [
"prepare",
] }
test = {cmd = "ctest --test-dir build --output-on-failure ", depends_on = ["build"] }
lint = "pre-commit run --all"

[dependencies]
eigen = ">=3.3.0,<3.5"
boost = ">=1.80.0,<1.85"
numpy = ">=1.22.0,<1.27"
scipy = ">=1.10.0,<1.13"
python = ">=3.8.0,<3.13"

[build-dependencies]
cmake = ">=3.10"
cxx-compiler = "1.7.0"
ninja = "1.11.*"
ccache = ">=4.9.1,<4.10"
pkg-config = ">=0.29.2,<0.30"
pre-commit = ">=3.6.2,<3.7"
test = {cmd = "ctest --test-dir build --output-on-failure ", depends_on = ["build"]}

0 comments on commit 0116563

Please sign in to comment.