Skip to content

Commit f59100c

Browse files
authored
chore(pixi): remove pip options --no-build-isolation --no-deps (#2218)
This PR removes pip options --no-build-isolation and --no-deps for installing Python packages. This enables these packages to have the default behavior to be built in isolation and can request their own dependencies as required.
1 parent 4fc3316 commit f59100c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pixi.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ rtd = { features = ["rtd"], solve-group = "default" }
6363

6464
[tasks]
6565
# install
66-
install-flopy = "pip install --no-build-isolation --no-deps --disable-pip-version-check git+https://github.com/modflowpy/flopy.git"
67-
install-pymake = "pip install --no-build-isolation --no-deps --disable-pip-version-check git+https://github.com/modflowpy/pymake.git"
68-
install-modflowapi = "pip install --no-build-isolation --no-deps --disable-pip-version-check git+https://github.com/MODFLOW-USGS/modflowapi.git"
69-
install-modflow-devtools = "pip install --no-build-isolation --no-deps --disable-pip-version-check git+https://github.com/MODFLOW-USGS/modflow-devtools.git"
66+
install-flopy = "pip install --disable-pip-version-check git+https://github.com/modflowpy/flopy.git"
67+
install-pymake = "pip install --disable-pip-version-check git+https://github.com/modflowpy/pymake.git"
68+
install-modflowapi = "pip install --disable-pip-version-check git+https://github.com/MODFLOW-USGS/modflowapi.git"
69+
install-modflow-devtools = "pip install --disable-pip-version-check git+https://github.com/MODFLOW-USGS/modflow-devtools.git"
7070
install = { depends-on = [
7171
"install-flopy",
7272
"install-pymake",

0 commit comments

Comments
 (0)