File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " Python: Current File" ,
6
+ "type" : " debugpy" ,
7
+ "request" : " launch" ,
8
+ "program" : " ${file}" ,
9
+ "console" : " integratedTerminal" ,
10
+ "justMyCode" : true ,
11
+ "env" : {
12
+ "PYTHONPATH" : " ${workspaceFolder}"
13
+ }
14
+ }
15
+ ]
16
+ }
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ def _is_bounds_monotonic(bounds: np.ndarray) -> bool:
368
368
if nonzero_diffs .size == 0 :
369
369
return True
370
370
371
- return np .all (nonzero_diffs > 0 ) or np .all (nonzero_diffs < 0 )
371
+ return bool ( np .all (nonzero_diffs > 0 ) or np .all (nonzero_diffs < 0 ) )
372
372
373
373
374
374
def _get_order_of_core_dims (core_dim_orders : dict [str , str ]) -> str :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: cf_xarray_test
2
2
channels :
3
3
- conda-forge
4
4
dependencies :
5
+ - python=3.11
5
6
- pytest-cov
6
7
- pytest
7
8
- pytest-xdist
You can’t perform that action at this time.
0 commit comments