1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
name: test-environment
channels:
- conda-forge
dependencies:
# required dependencies
- packaging=20.0
- python=3.8
- pyyaml=5.3.1
- click=7.0
- cloudpickle=1.5.0 # this is in the min from distributed
- partd=0.3.10
- fsspec=0.6.0
- toolz=0.8.2
# optional dependencies pulled in by pip install dask[distributed]
- pip
- pip:
- git+https://github.com/dask/distributed
# test dependencies
- pre-commit
- pytest
- pytest-cov
- pytest-rerunfailures
- pytest-timeout
- pytest-xdist
|