-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Python 3.10 job to test suite CI * Ignore numpy.distutils deprecation warning * Fix filterwarnings ordering * Don't include fastparquet in Python 3.10 environment * setup.py * Add 3.10 build for import checks * Update CI dependencies Various packages have fixed issues and/or added Python 3.10 support. So refresh them based on their latest status. * Fixup distributed test * Drop `setuptools` version constraint * Include Thomas' feedback Co-authored-by: Thomas Grainger <[email protected]> Co-authored-by: John Kirkham <[email protected]> Co-authored-by: Jim Crist-Harif <[email protected]> Co-authored-by: Thomas Grainger <[email protected]>
- Loading branch information
1 parent
cd8aa01
commit e49880b
Showing
7 changed files
with
86 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# 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-xdist | ||
- moto | ||
- flask | ||
- fastparquet>=0.8.0 | ||
- h5py | ||
- pytables | ||
- zarr | ||
- tiledb-py | ||
# resolver was pulling in old versions, so hard-coding floor | ||
# https://github.com/dask/dask/pull/8505 | ||
- tiledb>=2.5.0 | ||
- xarray | ||
- fsspec | ||
- sqlalchemy>=1.4.0 | ||
- pyarrow | ||
- coverage | ||
- jsonschema | ||
# other -- IO | ||
# Not available for Python 3.9+ on conda-forge | ||
# - bcolz | ||
- blosc | ||
- boto3 | ||
- botocore | ||
- bokeh | ||
- httpretty | ||
- aiohttp | ||
# Need recent version of s3fs to support newer aiobotocore versions | ||
# https://github.com/dask/s3fs/issues/514 | ||
- s3fs>=2021.8.0 | ||
- cloudpickle | ||
- crick | ||
- cytoolz | ||
- distributed | ||
- ipython | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters