From d2c2b37a13310d6e12f8d334fb98e789ff367b03 Mon Sep 17 00:00:00 2001 From: Ray Douglass <3107146+raydouglass@users.noreply.github.com> Date: Thu, 10 Aug 2023 12:20:26 -0400 Subject: [PATCH] Don't append CUDA suffix to python pkg name (#523) By convention, the python package name should not include the CUDA suffix. https://github.com/rapidsai/cuxfilter/blob/branch-23.08/ci/release/apply_wheel_modifications.sh#L13 handles adding the suffix when needed. This fixes using the wrong suffix in CUDA 11 builds such as https://github.com/rapidsai/cuxfilter/actions/runs/5814188510/job/15763351108#step:9:376 Authors: - Ray Douglass (https://github.com/raydouglass) Approvers: - Ajay Thorve (https://github.com/AjayThorve) - Bradley Dice (https://github.com/bdice) --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 79409aa2..5127d9d0 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -8,7 +8,7 @@ requires = [ ] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../dependencies.yaml and run `rapids-dependency-file-generator`. [project] -name = "cuxfilter-cu12" +name = "cuxfilter" version = "23.8" description = "GPU accelerated cross filtering with cuDF" readme = { file = "README.md", content-type = "text/markdown" }