Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Support weighted clustering #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 2, 2022
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
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,18 @@ jobs:
activate-environment: testing
- name: Install dependencies
run: |
conda install -c conda-forge python-graphblas networkx scipy \
pytest coverage black flake8 flake8-comprehensions flake8-bugbear
pip install -e .
conda install -c conda-forge python-graphblas scipy pandas \
pytest-cov pytest-randomly black flake8-comprehensions flake8-bugbear
# matplotlib lxml pygraphviz pydot sympy # Extra networkx deps we don't need yet
pip install git+https://github.com/networkx/networkx.git@main --no-deps
pip install -e . --no-deps
- name: Style checks
run: |
flake8
black . --check --diff
- name: PyTest
run: |
coverage run --branch -m pytest
coverage run --branch -m pytest -v
coverage xml
- name: Coverage
uses: codecov/codecov-action@v2
6 changes: 3 additions & 3 deletions graphblas_algorithms/algorithms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .cluster import average_clustering, clustering, transitivity, triangles
from .link_analysis import pagerank
from .reciprocity import overall_reciprocity, reciprocity
from .cluster import *
from .link_analysis import *
from .reciprocity import *
Loading