Skip to content

Commit

Permalink
fix conda's build
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Jan 21, 2025
1 parent 183f8f2 commit d129218
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ test:
requires:
- pip
{% for dep in project['optional-dependencies']['tests-core'] %}
{% if dep == 'dask[dataframe]' %}
- dask
{% if 'dask[dataframe]' in dep %}
- {{ dep | replace("[dataframe]", "") }}
{% elif 'bokeh_sampledata' in dep %}
- {{ dep | replace("; python_version >= '3.10'", "") }}
{% else %}
- {{ dep }}
{% endif %}
Expand Down

0 comments on commit d129218

Please sign in to comment.