Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tighten dask-core and distributed pinnings #190

Merged
merged 3 commits into from
Aug 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ source:
sha256: a14c1c5143081701d4fe62283e09cc5ad5336dff3a152de64eb77ee3180e9792

build:
number: 0
number: 1
noarch: python

requirements:
host:
- python >=3.8
run:
- python >=3.8
- dask-core {{ version }}
- distributed {{ version }}
- dask-core ={{ version }},!={{ version }}a*
- distributed ={{ version }},!={{ version }}a*
Comment on lines +21 to +22
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This may need more tinkering, but this is one idea

Suggested change
- dask-core ={{ version }},!={{ version }}a*
- distributed ={{ version }},!={{ version }}a*
- dask-core =={{ version }}|{{ version }}.*,!={{ version }}a*
- distributed =={{ version }}|{{ version }}.*,!={{ version }}a*

- cytoolz >=0.8.2
- lz4
- numpy >=1.18
Expand Down