Skip to content

Commit a874c64

Browse files
committed
Use anaconda main channel to install recent version of conda-standalone and constructor
1 parent 532b258 commit a874c64

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ env:
2626
# tomli is needed for etspy test_version
2727
# https://github.com/usnistgov/etspy/issues/24
2828
TEST_DEPS: '"pytest<9" pytest-qt pytest-xdist pytest-rerunfailures pytest-mpl filelock tomli'
29-
CONSTRUCTOR_VERSION: '3.14.0'
30-
CONDA_STANDALONE: '24.11.0'
29+
CONSTRUCTOR_VERSION: '3.14.3'
30+
# Latest version of conda-standalone (from anaconda main) that is built on osx-64
31+
CONDA_STANDALONE: '25.5.1.post1'
32+
CHANNEL: 'main'
3133
ROSETTASCIIO_CACHE_NUMBER: 0 # Increase this value to reset cache
3234

3335
defaults:
@@ -66,7 +68,7 @@ jobs:
6668
- name: Install constructor
6769
run: |
6870
# Constructor is needed to parse the list of included packages
69-
conda install constructor==${{ env.CONSTRUCTOR_VERSION }}
71+
conda install ${{ env.CHANNEL }}::constructor==${{ env.CONSTRUCTOR_VERSION }}
7072
7173
- name: Conda info
7274
run: |
@@ -184,7 +186,7 @@ jobs:
184186

185187
- name: Install constructor
186188
run: |
187-
conda install constructor==${{ env.CONSTRUCTOR_VERSION }} conda-standalone==${{ env.CONDA_STANDALONE }}
189+
conda install -c ${{ env.CHANNEL }} constructor==${{ env.CONSTRUCTOR_VERSION }} conda-standalone==${{ env.CONDA_STANDALONE }}
188190
189191
- name: Conda info
190192
run: |

0 commit comments

Comments
 (0)