-
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.
Support for Python 3.12 (dask#10544)
- Loading branch information
Showing
6 changed files
with
96 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- name: Checkout source | ||
uses: actions/[email protected] | ||
|
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,79 @@ | ||
# This job includes coverage | ||
name: test-environment | ||
channels: | ||
- conda-forge | ||
- nodefaults | ||
dependencies: | ||
# required dependencies | ||
- python=3.12 | ||
- packaging | ||
- pyyaml | ||
- click | ||
- cloudpickle | ||
- partd | ||
- fsspec | ||
- importlib_metadata | ||
- toolz | ||
# test dependencies | ||
- pre-commit | ||
- pytest | ||
- pytest-cov | ||
- pytest-rerunfailures | ||
- pytest-timeout | ||
- pytest-xdist | ||
- moto | ||
# Optional dependencies | ||
- mimesis | ||
- numpy | ||
- pandas | ||
- flask | ||
- fastparquet>=0.8.0 | ||
- h5py | ||
- pytables | ||
- zarr | ||
# `tiledb-py=0.17.5` lead to strange seg faults in CI, However 0.18 is needed for 3.11 | ||
# https://github.com/dask/dask/pull/9569 | ||
# - tiledb-py # crashes on Python 3.11 | ||
# - pyspark | ||
# - tiledb>=2.5.0 # crashes on Python 3.11 | ||
- xarray | ||
- sqlalchemy>=1.4.16 | ||
- pyarrow>=13 | ||
- coverage | ||
- jsonschema | ||
# # other -- IO | ||
- boto3 | ||
- botocore | ||
- bokeh | ||
- httpretty | ||
- aiohttp | ||
- s3fs | ||
# Need a new `crick` release with support for `numpy=1.24+` | ||
# https://github.com/dask/crick/issues/25 | ||
# - crick | ||
- cytoolz | ||
- distributed | ||
- ipython | ||
- ipycytoscape | ||
# until https://github.com/jupyter-widgets/ipywidgets/issues/3731 is fixed | ||
- ipywidgets<8.0.5 | ||
- ipykernel<6.22.0 | ||
- lz4 | ||
# - numba no support for 3.12 | ||
- psutil | ||
- requests | ||
- scikit-image | ||
- scikit-learn | ||
- scipy | ||
- python-snappy | ||
- sparse | ||
- cachey | ||
- python-graphviz | ||
# Not available on macOS for Python 3.12 yet | ||
# - python-cityhash | ||
- 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