Skip to content

Commit cb2c669

Browse files
authored
Remove un-needed package installs in CI (#2095)
1 parent cc2cdee commit cb2c669

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,15 @@ jobs:
5050
- name: Create Conda environment with the rights deps
5151
shell: "bash -l {0}"
5252
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
5454
conda activate zarr-env
5555
npm install -g azurite
5656
- name: Install dependencies
5757
shell: "bash -l {0}"
5858
run: |
5959
conda activate zarr-env
6060
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
6362
python -m pip install -e .
6463
python -m pip freeze
6564
- name: Tests

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@ jobs:
3131
- name: Create Conda environment with the rights deps
3232
shell: bash -l {0}
3333
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
3535
- name: Install dependencies
3636
shell: bash -l {0}
3737
run: |
3838
conda activate zarr-env
3939
python -m pip install --upgrade pip
40-
python -m pip install -U pip setuptools wheel
4140
python -m pip install -r requirements_dev_numpy.txt -r requirements_dev_minimal.txt -r requirements_dev_optional.txt
4241
python -m pip install .
4342
python -m pip freeze

0 commit comments

Comments
 (0)