File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -50,16 +50,15 @@ jobs:
50
50
- name : Create Conda environment with the rights deps
51
51
shell : " bash -l {0}"
52
52
run : |
53
- conda create -n zarr-env python==${{matrix.python-version}} bsddb3 numcodecs lmdb pip nodejs flake8 mypy
53
+ conda create -n zarr-env python==${{matrix.python-version}} bsddb3 pip nodejs
54
54
conda activate zarr-env
55
55
npm install -g azurite
56
56
- name : Install dependencies
57
57
shell : " bash -l {0}"
58
58
run : |
59
59
conda activate zarr-env
60
60
python -m pip install --upgrade pip
61
- python -m pip install -U pip setuptools wheel line_profiler
62
- python -m pip install -r requirements_dev_minimal.txt numpy${{matrix.numpy_version}} -r requirements_dev_optional.txt pymongo redis
61
+ python -m pip install -r requirements_dev_minimal.txt numpy${{matrix.numpy_version}} -r requirements_dev_optional.txt line_profiler pymongo redis
63
62
python -m pip install -e .
64
63
python -m pip freeze
65
64
- name : Tests
Original file line number Diff line number Diff line change @@ -31,13 +31,12 @@ jobs:
31
31
- name : Create Conda environment with the rights deps
32
32
shell : bash -l {0}
33
33
run : |
34
- conda create -n zarr-env python==${{matrix.python-version}} numcodecs pip nodejs
34
+ conda create -n zarr-env python==${{matrix.python-version}} pip nodejs
35
35
- name : Install dependencies
36
36
shell : bash -l {0}
37
37
run : |
38
38
conda activate zarr-env
39
39
python -m pip install --upgrade pip
40
- python -m pip install -U pip setuptools wheel
41
40
python -m pip install -r requirements_dev_numpy.txt -r requirements_dev_minimal.txt -r requirements_dev_optional.txt
42
41
python -m pip install .
43
42
python -m pip freeze
You can’t perform that action at this time.
0 commit comments