Skip to content

Commit

Permalink
add Python 3.12 support, prefer absolute paths in Dockerfiles (#102)
Browse files Browse the repository at this point in the history
* add Python 3.12 support

* exclude Python 3.12 RAPIDS 24.08 builds

* absolute paths
  • Loading branch information
jameslamb authored Sep 11, 2024
1 parent 65c2149 commit 5d9d592
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ci/axis/dask.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ CUDA_VER:
PYTHON_VER:
- '3.10'
- '3.11'
- '3.12'

LINUX_VER:
- ubuntu20.04
Expand All @@ -21,3 +22,6 @@ excludes:
# dask-image gpuCI isn't dependent on RAPIDS
- BUILD_NAME: dask_image
RAPIDS_VER: '24.08'
# Python 3.12 support was first added in RAPIDS 24.10
- PYTHON_VER: '3.12'
RAPIDS_VER: '24.08'
2 changes: 1 addition & 1 deletion dask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN cat /dask.yml \
| sed -r "s/pyarrow=/pyarrow>=/g" \
| sed -r "s/pandas=/pandas>=/g" \
| sed -r "s/numpy=/numpy>=/g" \
> dask_unpinned.yml
> /dask_unpinned.yml

RUN conda-merge /rapids_pinned.yml /dask_unpinned.yml > /dask.yml

Expand Down
2 changes: 1 addition & 1 deletion distributed/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN cat /rapids.yml \
# unpin problematic CI dependencies
RUN cat /dask.yml \
| sed -r "s/pyarrow=/pyarrow>=/g" \
> dask_unpinned.yml
> /dask_unpinned.yml

RUN conda-merge /rapids_pinned.yml /dask_unpinned.yml > /distributed.yml

Expand Down

0 comments on commit 5d9d592

Please sign in to comment.