-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmeta.yaml
94 lines (86 loc) · 2.29 KB
/
meta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{% set version = "2022.10.0" %}
package:
name: distributed
version: {{ version }}
source:
url: https://pypi.io/packages/source/d/distributed/distributed-{{ version }}.tar.gz
sha256: dcfbc9c528bcd9e4f9686e673956a90172826395ac5b258039e580777d50782f
build:
number: 1
noarch: python
script: {{ PYTHON }} -m pip install . -vv
entry_points:
# Old style CLI
- dask-scheduler = distributed.cli.dask_scheduler:main
- dask-ssh = distributed.cli.dask_ssh:main
- dask-worker = distributed.cli.dask_worker:main
# New CLI added in https://github.com/dask/distributed/pull/6735
- dask scheduler = distributed.cli.dask_scheduler:main
- dask ssh = distributed.cli.dask_ssh:main
- dask worker = distributed.cli.dask_worker:main
requirements:
host:
- python >=3.8
- pip
- dask-core {{ version }}
run:
- python >=3.8
- click >=6.6
- cloudpickle >=1.5.0
- cytoolz >=0.8.2
- {{ pin_compatible('dask-core', max_pin='x.x.x') }}
- jinja2
- locket >=1.0.0
- msgpack-python >=0.6.0
- packaging >=20.0
- psutil >=5.0
- pyyaml
- sortedcontainers !=2.0.0,!=2.0.1
- tblib >=1.6.0
- toolz >=0.8.2
- tornado >=6.0.3,<6.2
- urllib3
- zict >=0.1.3
run_constrained:
- openssl !=1.1.1e
test:
imports:
- distributed
- distributed.cli
- distributed.comm
- distributed.deploy
- distributed.diagnostics
- distributed.protocol
commands:
- pip check
- dask-scheduler --help
- dask-ssh --help
- dask-worker --help
- dask scheduler --help
- dask ssh --help
- dask worker --help
requires:
- pip
about:
home: https://distributed.dask.org
summary: Distributed scheduler for Dask
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
description: |
Distributed is a lightweight library for distributed computing in Python.
It extends both the concurrent.futures and dask APIs to moderate sized
clusters.
doc_url: https://distributed.dask.org
doc_source_url: https://github.com/dask/distributed/blob/main/docs/source/index.rst
dev_url: https://github.com/dask/distributed
extra:
recipe-maintainers:
- mrocklin
- jcrist
- martindurant
- jakirkham
- marcelotrevisani
- ogrisel
- tomaugspurger
- jrbourbeau