Skip to content

Commit de759d5

Browse files
committed
fix pip install with no-deps
1 parent 27ea9aa commit de759d5

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.github/workflows/build.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
create-args: >-
4343
python=${{ matrix.python-version }}
4444
post-cleanup: 'all'
45+
env:
46+
PIP_NO_DEPS: true
4547
- name: Install py3.8 environment
4648
if: matrix.python-version == '3.8'
4749
uses: mamba-org/setup-micromamba@v1
@@ -50,6 +52,8 @@ jobs:
5052
cache-environment: true
5153
environment-file: dev/env-py38.yaml
5254
post-cleanup: 'all'
55+
env:
56+
PIP_NO_DEPS: true
5357
- name: additional setup
5458
run: pip install --no-deps -e .
5559
- name: Get Date
@@ -90,6 +94,8 @@ jobs:
9094
create-args: >-
9195
python=${{ matrix.python-version }}
9296
post-cleanup: 'all'
97+
env:
98+
PIP_NO_DEPS: true
9399
- name: Install py3.8 environment
94100
if: matrix.python-version == '3.8'
95101
uses: mamba-org/setup-micromamba@v1
@@ -98,6 +104,8 @@ jobs:
98104
cache-environment: true
99105
environment-file: dev/env-py38.yaml
100106
post-cleanup: 'all'
107+
env:
108+
PIP_NO_DEPS: true
101109
- name: additional setup spec
102110
run: |
103111
conda remove --yes --force bioimageio.spec || true # allow failure for cached env
@@ -154,6 +162,8 @@ jobs:
154162
create-args: >-
155163
python=${{ matrix.python-version }}
156164
post-cleanup: 'all'
165+
env:
166+
PIP_NO_DEPS: true
157167
- name: additional setup spec
158168
run: |
159169
conda remove --yes --force bioimageio.spec || true # allow failure for cached env
@@ -191,6 +201,8 @@ jobs:
191201
create-args: >-
192202
python=${{ matrix.python-version }}
193203
post-cleanup: 'all'
204+
env:
205+
PIP_NO_DEPS: true
194206
- name: additional setup
195207
run: pip install --no-deps -e .
196208
- name: Get Date

dev/env-py38.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ dependencies:
4242
- typing-extensions
4343
- xarray
4444
- pip:
45-
- -e --no-deps ..
45+
- -e ..

dev/env-tf.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ dependencies:
4242
- typing-extensions
4343
- xarray
4444
- pip:
45-
- -e --no-deps ..
45+
- -e ..

dev/env-wo-python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ dependencies:
4242
- typing-extensions
4343
- xarray
4444
- pip:
45-
- -e --no-deps ..
45+
- -e ..

dev/env.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ dependencies:
4141
- typing-extensions
4242
- xarray
4343
- pip:
44-
- -e --no-deps ..
44+
- -e ..

0 commit comments

Comments
 (0)