Skip to content

Commit

Permalink
Fix kvikio casing and remove unnecessary rmm dependency (#414)
Browse files Browse the repository at this point in the history
The case-sensitive name `KvikIO` is throwing off `find_package` searches
in various places.
  • Loading branch information
vyasr authored Nov 4, 2024
1 parent b3902a7 commit 519de02
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,16 @@ repos:
path: kvikio
git: {<<: *git_defaults, repo: kvikio}
cpp:
- name: KvikIO
- name: kvikio
sub_dir: cpp
depends: [rmm]
python:
- name: libkvikio
sub_dir: python/libkvikio
depends: [KvikIO]
depends: [kvikio]
args: {install: *rapids_build_backend_args}
- name: kvikio
sub_dir: python/kvikio
depends: [KvikIO]
depends: [kvikio]
args: {install: *rapids_build_backend_args}

- name: cudf
Expand All @@ -70,7 +69,7 @@ repos:
cpp:
- name: cudf
sub_dir: cpp
depends: [KvikIO]
depends: [kvikio]
- name: cudf_kafka
sub_dir: cpp/libcudf_kafka
depends: [cudf]
Expand Down

0 comments on commit 519de02

Please sign in to comment.