Skip to content
Open
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
11 changes: 11 additions & 0 deletions bionemo-recipes/models/geneformer/.ci_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# nvidia-resiliency-ext>=0.6.0 is required at runtime by megatron-core==0.17.1,
# but it depends on grpcio-tools>=1.76.0 which requires protobuf>=6.30.0,
# conflicting with nemo-toolkit==2.4.0 (protobuf~=5.29.5).
# Install it without deps to avoid the protobuf conflict, then install
# its safe transitive deps separately.
pip install --no-deps "nvidia-resiliency-ext>=0.6.0"
pip install "defusedxml" "httpx>=0.24.0" "nvidia-ml-py>=12.570.86"

# Install the package itself
PIP_CONSTRAINT= pip install -e .
Loading