diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 634820ad..3ed0f5df 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -42,6 +42,8 @@ jobs: create-args: >- python=${{ matrix.python-version }} post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: Install py3.8 environment if: matrix.python-version == '3.8' uses: mamba-org/setup-micromamba@v1 @@ -50,6 +52,8 @@ jobs: cache-environment: true environment-file: dev/env-py38.yaml post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: additional setup run: pip install --no-deps -e . - name: Get Date @@ -90,6 +94,8 @@ jobs: create-args: >- python=${{ matrix.python-version }} post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: Install py3.8 environment if: matrix.python-version == '3.8' uses: mamba-org/setup-micromamba@v1 @@ -98,6 +104,8 @@ jobs: cache-environment: true environment-file: dev/env-py38.yaml post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: additional setup spec run: | conda remove --yes --force bioimageio.spec || true # allow failure for cached env @@ -154,6 +162,8 @@ jobs: create-args: >- python=${{ matrix.python-version }} post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: additional setup spec run: | conda remove --yes --force bioimageio.spec || true # allow failure for cached env @@ -191,6 +201,8 @@ jobs: create-args: >- python=${{ matrix.python-version }} post-cleanup: 'all' + env: + PIP_NO_DEPS: true - name: additional setup run: pip install --no-deps -e . - name: Get Date diff --git a/dev/env-py38.yaml b/dev/env-py38.yaml index 23286840..8d7e7ecf 100644 --- a/dev/env-py38.yaml +++ b/dev/env-py38.yaml @@ -42,4 +42,4 @@ dependencies: - typing-extensions - xarray - pip: - - -e --no-deps .. + - -e .. diff --git a/dev/env-tf.yaml b/dev/env-tf.yaml index ac443f65..c28c01aa 100644 --- a/dev/env-tf.yaml +++ b/dev/env-tf.yaml @@ -42,4 +42,4 @@ dependencies: - typing-extensions - xarray - pip: - - -e --no-deps .. + - -e .. diff --git a/dev/env-wo-python.yaml b/dev/env-wo-python.yaml index 2a77d25b..08c8968e 100644 --- a/dev/env-wo-python.yaml +++ b/dev/env-wo-python.yaml @@ -42,4 +42,4 @@ dependencies: - typing-extensions - xarray - pip: - - -e --no-deps .. + - -e .. diff --git a/dev/env.yaml b/dev/env.yaml index 7ff6abed..ef715090 100644 --- a/dev/env.yaml +++ b/dev/env.yaml @@ -41,4 +41,4 @@ dependencies: - typing-extensions - xarray - pip: - - -e --no-deps .. + - -e ..