File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 31
31
uses : actions/setup-python@v4
32
32
with :
33
33
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
+
34
42
- name : Install ffmpeg
35
43
run : |
36
44
if [ "$RUNNER_OS" == "Linux" ]; then
@@ -42,10 +50,11 @@ jobs:
42
50
choco install ffmpeg
43
51
fi
44
52
shell : bash
53
+
45
54
- 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"
49
58
- name : Install and test
50
59
run : |
51
60
python -m pip install --upgrade pip wheel poetry
You can’t perform that action at this time.
0 commit comments