File tree 2 files changed +14
-2
lines changed 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,27 @@ jobs:
24
24
env :
25
25
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
26
26
27
+ - name : Show info about `base` environment
28
+ shell : " bash -l {0}"
29
+ run : |
30
+ conda info
31
+ conda config --show-sources
32
+ conda list --show-channel-urls
33
+
27
34
- name : Set up env
28
35
shell : " bash -l {0}"
29
36
run : |
30
- conda create -n env python== ${{matrix.python-version}} wheel pip compilers
37
+ conda create -n env python=${{matrix.python-version}} wheel pip compilers 'clang>=12.0.1'
31
38
conda activate env
32
39
which pip
33
40
pip install -r requirements_test.txt -r requirements.txt
34
41
conda env export
35
42
43
+ - name : Show info about `env` environment
44
+ shell : " bash -l {0}"
45
+ run : |
46
+ conda list --show-channel-urls -n env
47
+
36
48
- name : Install numcodecs
37
49
shell : " bash -l {0}"
38
50
run : |
Original file line number Diff line number Diff line change 27
27
- name : Set up env
28
28
shell : " bash -l {0}"
29
29
run : |
30
- conda create -n env python== ${{matrix.python-version}} wheel pip compilers
30
+ conda create -n env python=${{matrix.python-version}} wheel pip compilers
31
31
conda activate env
32
32
which pip
33
33
pip install -r requirements_test.txt -r requirements.txt
You can’t perform that action at this time.
0 commit comments