File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 95
95
conda-env : dev
96
96
spec : main
97
97
numpy-version : 2
98
- - python-version : ' 3.14'
99
- conda-env : dev
100
- spec : conda
101
- numpy-version : 2
102
98
103
99
steps :
104
100
- uses : actions/checkout@v4
@@ -127,6 +123,7 @@ jobs:
127
123
activate-environment : ${{steps.setup.outputs.env-name}}
128
124
channel-priority : strict
129
125
miniforge-version : latest
126
+ python-version : ${{ matrix.python-version }}
130
127
- name : Get Date
131
128
id : get-date
132
129
run : |
@@ -145,8 +142,13 @@ jobs:
145
142
CACHE_NUMBER : 0
146
143
id : cache-env
147
144
- name : Install env
148
- run : conda env update --name=${{steps.setup.outputs.env-name}} --file=${{steps.setup.outputs.env-file}} python=${{matrix.python-version}} numpy=${{matrix.numpy-version}}
149
145
if : steps.cache-env.outputs.cache-hit != 'true'
146
+ run : |
147
+ conda env update --name=${{steps.setup.outputs.env-name}} --file=${{steps.setup.outputs.env-file}}
148
+ - name : Ensure Python/numpy version
149
+ # if: steps.cache-env.outputs.cache-hit != 'true' # TODO: skip this step on cache hits once the caches are all updated
150
+ run : |
151
+ conda install python=${{matrix.python-version}} numpy=${{matrix.numpy-version}}
150
152
- name : Install uncached pip dependencies
151
153
run : |
152
154
pip install --upgrade pip
You can’t perform that action at this time.
0 commit comments