File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,15 @@ jobs:
30
30
runs-on : 4-core-ubuntu
31
31
steps :
32
32
- uses : actions/checkout@v4
33
- - name : Set up Python
34
- uses : actions/setup-python@v5
33
+ # - name: Set up Python
34
+ # uses: actions/setup-python@v5
35
+ # with:
36
+ # python-version: "3.10"
37
+ - uses : conda-incubator/setup-miniconda@v3
35
38
with :
39
+ auto-update-conda : true
36
40
python-version : " 3.10"
41
+ activate-environment : test
37
42
- name : Fetch all history for all tags and branches
38
43
# We need to do this so setuptools_scm knows how to set the BoTorch version.
39
44
run : git fetch --prune --unshallow
46
51
- name : Install Scipy
47
52
run : |
48
53
uv pip install scipy==${{ inputs.scipy_version }} --system
54
+ - name : Conda list
55
+ shell : bash -el {0}
56
+ run : conda list
49
57
- name : Run tutorials with smoke test
50
58
run : |
51
59
# export OMP_NUM_THREADS=1
You can’t perform that action at this time.
0 commit comments