File tree 8 files changed +11
-10
lines changed
8 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,12 @@ jobs:
77
77
cache-environment : true
78
78
environment-file : dev/env-py38.yaml
79
79
post-cleanup : ' all'
80
- - name : additional setup
80
+ - name : additional setup spec
81
81
run : |
82
82
conda remove --yes --force bioimageio.spec || true # allow failure for cached env
83
83
pip install --no-deps git+https://github.com/bioimage-io/spec-bioimage-io
84
- pip install --no-deps -e .
84
+ - name : additional setup core
85
+ run : pip install --no-deps -e .
85
86
- name : pytest-spec-main
86
87
run : pytest --disable-pytest-warnings
87
88
Original file line number Diff line number Diff line change 1
1
{
2
- "version": "0.6.9 "
2
+ "version": "0.6.10 "
3
3
}
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ def predict_many(
161
161
f"Missing `{{member_id}}` in save_output_path={ save_output_path } "
162
162
)
163
163
164
- if not isinstance (inputs , collections .Mapping ) and "{sample_id}" not in str (
164
+ if not isinstance (inputs , collections .abc . Mapping ) and "{sample_id}" not in str (
165
165
save_output_path
166
166
):
167
167
raise ValueError (
@@ -179,7 +179,7 @@ def predict_many(
179
179
180
180
pp = create_prediction_pipeline (model )
181
181
182
- if not isinstance (inputs , collections .Mapping ):
182
+ if not isinstance (inputs , collections .abc . Mapping ):
183
183
sample_id = str (sample_id )
184
184
if "{i}" not in sample_id and "{i:" not in sample_id :
185
185
sample_id += "{i:03}"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ channels:
4
4
- conda-forge
5
5
- defaults
6
6
dependencies :
7
- - bioimageio.spec>=0.5.3.2
7
+ - bioimageio.spec>=0.5.3.3
8
8
- black
9
9
- crick # uncommented
10
10
- filelock
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ channels:
4
4
- conda-forge
5
5
- defaults
6
6
dependencies :
7
- - bioimageio.spec>=0.5.3.2
7
+ - bioimageio.spec>=0.5.3.3
8
8
- black
9
9
# - crick # currently requires python<=3.9
10
10
- filelock
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ channels:
4
4
- conda-forge
5
5
- defaults
6
6
dependencies :
7
- - bioimageio.spec>=0.5.3.2
7
+ - bioimageio.spec>=0.5.3.3
8
8
- black
9
9
# - crick # currently requires python<=3.9
10
10
- filelock
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: core
2
2
channels :
3
3
- conda-forge
4
4
dependencies :
5
- - bioimageio.spec>=0.5.3.2
5
+ - bioimageio.spec>=0.5.3.3
6
6
- black
7
7
# - crick # currently requires python<=3.9
8
8
- filelock
Original file line number Diff line number Diff line change 29
29
],
30
30
packages = find_namespace_packages (exclude = ["tests" ]),
31
31
install_requires = [
32
- "bioimageio.spec ==0.5.3.2 " ,
32
+ "bioimageio.spec ==0.5.3.3 " ,
33
33
"imageio>=2.10" ,
34
34
"loguru" ,
35
35
"numpy" ,
You can’t perform that action at this time.
0 commit comments