forked from networkx/networkx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pip install nx-cugraph from git, not nightly wheels, for docs (networ…
…kx#7011) This should be more reliable
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
# Install trusted backends, but not their dependencies. | ||
# We only need to use the "networkx.backend_info" entry-point. | ||
# This is the nightly wheel for nx-cugraph. | ||
pip install nx-cugraph-cu11 --extra-index-url https://rapidsdev:[email protected]/simple --no-deps | ||
pip install git+https://github.com/rapidsai/cugraph.git#subdirectory=python/nx-cugraph --no-deps | ||
# Development version of GraphBLAS backend | ||
pip install git+https://github.com/python-graphblas/graphblas-algorithms.git@main --no-deps | ||
pip list | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
# Install trusted backends, but not their dependencies. | ||
# We only need to use the "networkx.backend_info" entry-point. | ||
# This is the nightly wheel for nx-cugraph. | ||
pip install nx-cugraph-cu11 --extra-index-url https://rapidsdev:[email protected]/simple --no-deps | ||
pip install git+https://github.com/rapidsai/cugraph.git#subdirectory=python/nx-cugraph --no-deps | ||
# Development version of GraphBLAS backend | ||
pip install git+https://github.com/python-graphblas/graphblas-algorithms.git@main --no-deps | ||
pip list | ||
|