Skip to content

Commit 4004ef9

Browse files
authored
Update testing.yml
1 parent 36557a8 commit 4004ef9

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/testing.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ jobs:
3131
uses: actions/setup-python@v4
3232
with:
3333
python-version: ${{ matrix.python-version }}
34+
35+
- name: Set up Python
36+
uses: conda-incubator/setup-miniconda@v3
37+
with:
38+
channels: conda-forge,defaults
39+
channel-priority: strict
40+
python-version: ${{ matrix.python-version }}
41+
3442
- name: Install ffmpeg
3543
run: |
3644
if [ "$RUNNER_OS" == "Linux" ]; then
@@ -42,10 +50,11 @@ jobs:
4250
choco install ffmpeg
4351
fi
4452
shell: bash
53+
4554
- name: Install PyTables through Conda
46-
shell: bash -el {0} # Important: activates the conda environment
47-
run: |
48-
conda install pytables==3.8.0 "numpy<2"
55+
shell: bash -el {0} # Important: activates the conda environment
56+
run: |
57+
conda install pytables==3.8.0 "numpy<2"
4958
- name: Install and test
5059
run: |
5160
python -m pip install --upgrade pip wheel poetry

0 commit comments

Comments
 (0)