Skip to content

Commit

Permalink
Fixes from running .gitignore:python/nx-cugraph/objects.inv
Browse files Browse the repository at this point in the history
docs/nx-cugraph/source/nx_cugraph/how-it-works.md:The latest list of algorithms supported by nx-cugraph can be found [here](https://github.com/rapidsai/cugraph/blob/HEAD/python/nx-cugraph/README.md#algorithms) or in the next section.
docs/nx-cugraph/source/nx_cugraph/index.rst:By simply `installing and enabling nx-cugraph <https://github.com/rapidsai/cugraph/blob/HEAD/python/nx-cugraph/README.md#install>`_, users can see significant speedup on workflows where performance is hindered by the default NetworkX implementation.  With ``nx-cugraph``, users can have GPU-based, large-scale performance **without** changing their familiar and easy-to-use NetworkX code.
  • Loading branch information
nv-rliu committed Oct 22, 2024
1 parent e339b32 commit a6580a4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ repos:
- id: black
language_version: python3
args: [--target-version=py310]
files: ^(python/.*|benchmarks/.*)$
exclude: ^python/nx-cugraph/
files: ^(nx_cugraph.*|benchmarks/.*)$
exclude: ^nx_cugraph/
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
args: ["--config=.flake8"]
files: python/.*$
files: nx_cugraph.*$
types: [file]
types_or: [python] # TODO: Enable [python, cython]
additional_dependencies: ["flake8-force"]
Expand Down Expand Up @@ -63,8 +63,8 @@ repos:
hooks:
- id: nx-cugraph-meta-data-update
name: nx-cugraph meta-data updater
entry: bash -c "PYTHONPATH=./python/nx-cugraph python ./python/nx-cugraph/_nx_cugraph/__init__.py"
files: ^python/nx-cugraph/
entry: bash -c "PYTHONPATH=./nx_cugraph python ./nx_cugraph/_nx_cugraph/__init__.py"
files: ^nx_cugraph
types: [python]
language: python
pass_filenames: false
Expand All @@ -73,8 +73,8 @@ repos:
hooks:
- id: nx-cugraph-readme-update
name: nx-cugraph README updater
entry: bash -c "PYTHONPATH=./python/nx-cugraph python ./python/nx-cugraph/scripts/update_readme.py ./python/nx-cugraph/README.md"
files: ^python/nx-cugraph/
entry: bash -c "PYTHONPATH=./nx_cugraph python ./scripts/update_readme.py ./README.md"
files: ^nx_cugraph/
types_or: [python, markdown]
language: python
pass_filenames: false
Expand Down

0 comments on commit a6580a4

Please sign in to comment.