Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
- '**'
- '!.devcontainer/**'
- '!.github/CODEOWNERS'
- '!.pre-commit-config.yaml'
- '!CONTRIBUTING.md'
- '!README.md'
- '!ci/release/update-version.sh'
Expand All @@ -62,6 +63,7 @@ jobs:
- '**'
- '!.devcontainer/**'
- '!.github/CODEOWNERS'
- '!.pre-commit-config.yaml'
- '!CONTRIBUTING.md'
- '!README.md'
- '!ci/release/update-version.sh'
Expand All @@ -70,6 +72,7 @@ jobs:
- '**'
- '!.devcontainer/**'
- '!.github/CODEOWNERS'
- '!.pre-commit-config.yaml'
- '!CONTRIBUTING.md'
- '!README.md'
- '!ci/release/update-version.sh'
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ repos:
setup[.]cfg$
- id: verify-alpha-spec
- repo: https://github.com/rapidsai/dependency-file-generator
rev: v1.19.0
rev: v1.20.0
hooks:
- id: rapids-dependency-file-generator
args: ["--clean"]
args: ["--clean", "--warn-all", "--strict"]
- repo: local
hooks:
- id: cmake-format
Expand Down
15 changes: 0 additions & 15 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ files:
includes:
- depends_on_libraft
- depends_on_nccl
- depends_on_rapids_logger
py_build_pylibwholegraph:
output: pyproject
pyproject_dir: python/pylibwholegraph
Expand Down Expand Up @@ -305,11 +304,6 @@ dependencies:
- output_types: [conda, pyproject, requirements]
packages:
- cython>=3.0.0
python_run_libwholegraph:
common:
- output_types: [conda, pyproject, requirements]
packages:
- depends_on_rapids_logger
python_run_pylibwholegraph:
common:
- output_types: [conda, pyproject, requirements]
Expand Down Expand Up @@ -487,15 +481,6 @@ dependencies:
packages:
- librmm-cu12==25.10.*,>=0.0.0a0
- {matrix: null, packages: [*librmm_unsuffixed]}
depends_on_rapids_logger:
common:
- output_types: [conda, requirements, pyproject]
packages:
- rapids-logger==0.1.*,>=0.0.0a0
- output_types: requirements
packages:
# pip recognizes the index as a global option for the requirements.txt file
- --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple
depends_on_libwholegraph:
common:
- output_types: conda
Expand Down
2 changes: 0 additions & 2 deletions python/libwholegraph/libwholegraph/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@ def load_library():
# these libraries must be loaded before libwholegraph because
# libwholegraph references their symbols
import libraft
import rapids_logger

libraft.load_library()
rapids_logger.load_library()
except ModuleNotFoundError:
# 'libwholegraph' has a runtime dependency on 'libraft' et al.. However,
# that dependency might be satisfied by a conda package
Expand Down
1 change: 0 additions & 1 deletion python/libwholegraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ classifiers = [
]
dependencies = [
"libraft==25.10.*,>=0.0.0a0",
"rapids-logger==0.1.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.


Expand Down