File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 6
6
- template : add-conda-to-path.yml
7
7
8
8
- bash : |
9
+ conda update -y conda
9
10
conda env create -n xarray-tests --file ${{ parameters.env_file }}
10
11
displayName : Install conda dependencies
11
12
12
13
- bash : |
13
14
source activate xarray-tests
14
- pip install -f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com \
15
+ python -m pip install \
16
+ -f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com \
15
17
--no-deps \
16
18
--pre \
17
19
--upgrade \
18
20
matplotlib \
19
21
numpy \
20
22
pandas \
21
23
scipy
22
- pip install \
24
+ python -m pip install \
23
25
--no-deps \
24
26
--upgrade \
25
27
git+https://github.com/dask/dask \
33
35
34
36
- bash : |
35
37
source activate xarray-tests
36
- pip install --no-deps -e .
38
+ python -m pip install --no-deps -e .
37
39
displayName : Install xarray
38
40
39
41
- bash : |
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ channels:
4
4
dependencies :
5
5
- python=3.6
6
6
- coveralls
7
+ - pip
7
8
- pytest
8
9
- pytest-cov
9
10
- pytest-env
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ dependencies:
11
11
- numpy=1.17
12
12
- pandas=0.25
13
13
- pint=0.9 # Actually not enough as it doesn't implement __array_function__yet!
14
+ - pip
14
15
- pytest
15
16
- pytest-cov
16
17
- pytest-env
You can’t perform that action at this time.
0 commit comments