Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ node_modules/
.mypy_cache
.ruff_cache
uv.lock
pixi.lock
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,16 @@ convention = "numpy"

# pyupgrade typing rewrite TODO: remove at some point from per-file ignore
# "UP006", "UP007"

[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["osx-arm64", "linux-64"]

[tool.pixi.dependencies]
proj = "*"

[tool.pixi.tasks]
test = "pytest"
test-parallel = "pytest -n auto --dist worksteal"
pre-commit = "pre-commit run"
pre-commit-all = "pre-commit run --all-files"