Skip to content

Commit

Permalink
Rename to depends-on in pixi.toml
Browse files Browse the repository at this point in the history
Will soon be deprecated.
See Deltares/Ribasim#1993
  • Loading branch information
visr authored Jan 6, 2025
1 parent 6e2d017 commit 517c03d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ platforms = ["linux-64", "win-64"]
## The different tasks of this project
[tasks]
# Installation
install = { depends_on = ["install-fiat", "install-pre-commit"] }
install = { depends-on = ["install-fiat", "install-pre-commit"] }
install-fiat = "pip install --no-deps --editable ."
install-pre-commit = "pre-commit install"

Expand All @@ -23,7 +23,7 @@ lint = { cmd = ["pre-commit", "run", "--all"] }
docker-clean = { cmd = ["docker", "system", "prune", "-f"] }

# Documentation generation
docs = { depends_on = ["generate-api", "interlink-docs", "quarto-render"] }
docs = { depends-on = ["generate-api", "interlink-docs", "quarto-render"] }
docs-quick = { depends-on = ["interlink-docs", "quarto-quick"] }
docs-slim = { depends-on = ["interlink-docs", "quarto-render"] }
generate-api = { cmd = ["python", "docs/api.py", "docs/_quarto.yml"] }
Expand All @@ -40,7 +40,7 @@ test-cov = { cmd = ["pytest", "--verbose", "--cov=fiat", "--cov-report", "xml"]
test-cov-local = { cmd = ["pytest", "--verbose", "--cov", "--cov-report", "html",] }

# Clean up (some of) the temporary files
clean = { depends_on = [
clean = { depends-on = [
"clean-env-files",
"clean-bin",
"clean-dist",
Expand Down

0 comments on commit 517c03d

Please sign in to comment.