Skip to content

Commit

Permalink
Pull request #197: fixes issue 151 on Github
Browse files Browse the repository at this point in the history
Merge in HYP/hypernetx from hotfix/github.issue.151 to master

* commit '81e17c74bcfb96421561f2748b3cba17001bb756':
  bump: version 2.3.3 → 2.3.4
  fixes issue 151 on Github
  • Loading branch information
brendapraggastis authored and bonicim committed Jun 11, 2024
2 parents 3a0479c + 81e17c7 commit 7cba362
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.3.3"
version = "2.3.4"
version_provider = "poetry"
version_files = [
"pyproject.toml",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import os


__version__ = "2.3.3"
__version__ = "2.3.4"


# If extensions (or modules to document with autodoc) are in another directory,
Expand Down
2 changes: 1 addition & 1 deletion hypernetx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from hypernetx.utils import *
from hypernetx.utils.toys import *

__version__ = "2.3.3"
__version__ = "2.3.4"
2 changes: 1 addition & 1 deletion hypernetx/algorithms/s_centrality_measures.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _s_centrality(func, H, s=1, edges=True, f=None, return_singletons=True, **kw
vertices = h.nodes

if h.shape[edges * 1] == 1:
stats = {v: 0 for v in vertices}
stats.update({v: 0 for v in vertices})
else:
g = h.get_linegraph(s=s, edges=edges)
stats.update({k: v for k, v in func(g, **kwargs).items()})
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hypernetx"
version = "2.3.3"
version = "2.3.4"
description = "HyperNetX is a Python library for the creation and study of hypergraphs."
authors = ["Brenda Praggastis <[email protected]>", "Dustin Arendt <[email protected]>",
"Sinan Aksoy <[email protected]>", "Emilie Purvine <[email protected]>",
Expand Down

0 comments on commit 7cba362

Please sign in to comment.