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
|
# This job includes coverage
name: test-environment
channels:
- conda-forge
- nodefaults
dependencies:
# required dependencies
- python=3.10
- packaging
- numpy
- pandas
# test dependencies
- pre-commit
- pytest
- pytest-cov
- pytest-rerunfailures
- pytest-timeout
- pytest-xdist
- moto
- flask
- fastparquet>=0.8.0
- h5py
- pytables
- zarr
# `tiledb-py=0.17.5` lead to strange seg faults in CI.
# We should unpin when possible.
# https://github.com/dask/dask/pull/9569
- tiledb-py<0.17.4
- pyspark
- tiledb>=2.5.0
- xarray
- fsspec
- sqlalchemy>=1.4.0
- pyarrow
- coverage
- jsonschema
# other -- IO
- boto3
- botocore
# Temporary restriction until https://github.com/dask/distributed/issues/7173 is resolved
- bokeh<3
- httpretty
- aiohttp
# Need recent version of s3fs to support newer aiobotocore versions
# https://github.com/dask/s3fs/issues/514
- s3fs>=2021.8.0
- click
- cloudpickle
- crick
- cytoolz
- distributed
- ipython
- ipycytoscape
- lz4
- numba
- partd
- psutil
- requests
- scikit-image
- scikit-learn
- scipy
- toolz
- python-snappy
- sparse
- cachey
- python-graphviz
- python-xxhash
- mmh3
- jinja2
- pip
- pip:
- git+https://github.com/dask/distributed
|