Skip to content

Commit

Permalink
Allow pinning against stable dask-core if no recent nightlies are ava…
Browse files Browse the repository at this point in the history
…ilable
  • Loading branch information
charlesbluca committed Mar 20, 2024
1 parent accc510 commit cf72631
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@ jobs:
export VERSION_SUFFIX=a`date +%y%m%d`
# conda search for the latest dask-core pre-release
arr=($(conda search --override-channels -c dask/label/dev dask-core | tail -n 1))
arr=($(conda search --override-channels -c conda-forge -c dask/label/dev dask-core | tail -n 1))
# extract dask-core pre-release version / build
# extract latest dask-core version
export DASK_CORE_VERSION=${arr[1]}
# distributed pre-release build
conda mambabuild ci/recipe \
--channel conda-forge \
--channel dask/label/dev \
--no-anaconda-upload \
--output-folder .
Expand Down

0 comments on commit cf72631

Please sign in to comment.