From b0ec68aa8c6271c117171ebe016eda4bc7a9c7b3 Mon Sep 17 00:00:00 2001 From: Ray Douglass <3107146+raydouglass@users.noreply.github.com> Date: Thu, 11 Apr 2024 13:14:41 -0400 Subject: [PATCH 1/2] Include CUDA 11 in build matrix for wheels (#589) --- .github/workflows/build.yaml | 2 +- .github/workflows/pr.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index faae9637..ee5a194f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -67,7 +67,7 @@ jobs: date: ${{ inputs.date }} script: ci/build_wheel.sh # This selects "ARCH=amd64 + the latest supported Python + CUDA". - matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.] + matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) wheel-publish: needs: wheel-build secrets: inherit diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 87e5e75d..bd9078d3 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -65,7 +65,7 @@ jobs: build_type: pull-request script: ci/build_wheel.sh # This selects "ARCH=amd64 + the latest supported Python + CUDA". - matrix_filter: map(select(.ARCH == "amd64")) | max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]) | [.] + matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) wheel-tests: needs: wheel-build secrets: inherit From 6705db5b8cf6757e4ff8650c96eec629b14c9f0b Mon Sep 17 00:00:00 2001 From: Ray Douglass Date: Wed, 5 Jun 2024 10:12:35 -0400 Subject: [PATCH 2/2] Update Changelog [skip ci] --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2428cc63..26cf2566 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# cuxfilter 24.06.00 (5 Jun 2024) + +## 🐛 Bug Fixes + +- Avoid importing from `dask_cudf.core` ([#593](https://github.com/rapidsai/cuxfilter/pull/593)) [@rjzamora](https://github.com/rjzamora) + +## 🛠️ Improvements + +- Enable FutureWarnings/DeprecationWarnings as errors ([#595](https://github.com/rapidsai/cuxfilter/pull/595)) [@mroeschke](https://github.com/mroeschke) +- Fix libwebp dependency ([#594](https://github.com/rapidsai/cuxfilter/pull/594)) [@AjayThorve](https://github.com/AjayThorve) +- Prevent path conflict in builds ([#583](https://github.com/rapidsai/cuxfilter/pull/583)) [@AyodeAwe](https://github.com/AyodeAwe) + # cuXfilter 24.04.00 (10 Apr 2024) ## 🐛 Bug Fixes