Skip to content

Commit 5647d06

Browse files
authored
Add dask-expr to dask conda recipe (#8601)
Add `dask-expr` to `dask` conda recipe (#8601)
1 parent 3f77d1b commit 5647d06

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/conda.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,12 @@ jobs:
4949
export VERSION_SUFFIX=a`date +%y%m%d`
5050
5151
# conda search for the latest dask-core pre-release
52-
arr=($(conda search --override-channels -c dask/label/dev dask-core | tail -n 1))
52+
dask_core_arr=($(conda search --override-channels -c dask/label/dev dask-core | tail -n 1))
53+
dask_expr_arr=($(conda search --override-channels -c dask/label/dev dask-expr | tail -n 1))
5354
54-
# extract dask-core pre-release version / build
55-
export DASK_CORE_VERSION=${arr[1]}
55+
# extract dask-core & dask-expr pre-release versions
56+
export DASK_CORE_VERSION=${dask_core_arr[1]}
57+
export DASK_EXPR_VERSION=${dask_expr_arr[1]}
5658
5759
# distributed pre-release build
5860
conda mambabuild continuous_integration/recipes/distributed \

continuous_integration/recipes/dask/meta.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{% set new_patch = major_minor_patch[2] | int + 1 %}
33
{% set version = (major_minor_patch[:2] + [new_patch]) | join('.') + environ.get('VERSION_SUFFIX', '') %}
44
{% set dask_version = environ.get('DASK_CORE_VERSION', '0.0.0.dev') %}
5+
{% set dask_expr_version = environ.get('DASK_EXPR_VERSION', '0.0.0.dev') %}
56

67

78
package:
@@ -20,10 +21,12 @@ requirements:
2021
host:
2122
- python >=3.9
2223
- dask-core {{ dask_version }}
24+
- dask-expr {{ dask_expr_version }}
2325
- distributed {{ version }}
2426
run:
2527
- python >=3.9
2628
- {{ pin_compatible('dask-core', max_pin='x.x.x.x') }}
29+
- {{ pin_compatible('dask-expr', max_pin='x.x.x.x') }}
2730
- {{ pin_compatible('distributed', exact=True) }}
2831
- cytoolz >=0.8.2
2932
- lz4 >=4.3.2

0 commit comments

Comments
 (0)