Skip to content

Commit

Permalink
Use correct python package names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jingru923 committed Apr 17, 2024
1 parent 6a6b8f0 commit af2036f
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 19 deletions.
36 changes: 36 additions & 0 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 4 additions & 19 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@ documentation = "https://deltares.github.io/Ribasim/"
repository = "https://github.com/Deltares/Ribasim"

[tasks]
# Installation
# install-ribasim-python = "pip install --no-build-isolation --no-deps --disable-pip-version-check --editable python/ribasim"
# install-ribasim-api = "pip install --no-build-isolation --no-deps --disable-pip-version-check --editable python/ribasim_api"
# install-ribasim-testmodels = "pip install --no-build-isolation --no-deps --disable-pip-version-check --editable python/ribasim_testmodels"
# install-python = { depends_on = [
# "install-ribasim-python",
# "install-ribasim-api",
# "install-ribasim-testmodels",
# ] }

# Tests
test-ribasim-python = "pytest --numprocesses=4 python/ribasim/tests"
test-ribasim-python-cov = "pytest --numprocesses=4 --cov=ribasim --cov-report=xml python/ribasim/tests"
Expand All @@ -32,12 +22,7 @@ test-ribasim-api = "pytest --basetemp=python/ribasim_api/tests/temp --junitxml=r
# Installation
install-julia = "juliaup add 1.10.0 && juliaup default 1.10.0"
install-pre-commit = "pre-commit install"
install-ci = { depends_on = [
# "install-python",
"install-julia",
"update-registry-julia",

] }
install-ci = { depends_on = ["install-julia", "update-registry-julia"] }
install = { depends_on = [
"install-ci",
"install-qgis-plugins",
Expand Down Expand Up @@ -175,9 +160,9 @@ xugrid = "*"
xarray = "*"

[pypi-dependencies]
install-ribasim-python ={ path = "python/ribasim", editable = true }
install-ribasim-api ={ path = "python/ribasim_api", editable = true }
install-ribasim-testmodels ={ path = "python/ribasim_testmodels", editable = true }
ribasim = { path = "python/ribasim", editable = true }
ribasim_api = { path = "python/ribasim_api", editable = true }
ribasim_testmodels = { path = "python/ribasim_testmodels", editable = true }

[feature.dev.dependencies]
build = "*"
Expand Down

0 comments on commit af2036f

Please sign in to comment.