Skip to content

Commit

Permalink
Pull request #218: Hotfix/grabpropv2
Browse files Browse the repository at this point in the history
Merge in HYP/hypernetx from hotfix/grabpropv2 to master

* commit 'd625f2abc7ef6e7f4ab417a47177d77523e06788':
  bump: version 2.3.8 → 2.3.9
  fix a missing line
  adding hotfix
  • Loading branch information
ryandanehy committed Dec 6, 2024
2 parents 0a8ec06 + d625f2a commit d641ff0
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 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.8"
version = "2.3.9"
version_provider = "poetry"
version_files = [
"pyproject.toml",
Expand Down
8 changes: 8 additions & 0 deletions docs/source/algorithms/algorithms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ algorithms.laplacians\_clustering module
:undoc-members:
:show-inheritance:

algorithms.matching\_algorithms module
--------------------------------------

.. automodule:: algorithms.matching_algorithms
:members:
:undoc-members:
:show-inheritance:

algorithms.s\_centrality\_measures module
-----------------------------------------

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.8"
__version__ = "2.3.9"


# 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.8"
__version__ = "2.3.9"
4 changes: 2 additions & 2 deletions hypernetx/classes/hypergraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def __init__(
0,
weight_col=edge_weight_prop_col,
default_weight=default_edge_weight,
misc_properties_col=misc_edge_properties_col,
misc_properties_col=misc_properties_col,
)
edge_propertystore = PropertyStore(
edfp, default_weight=default_edge_weight
Expand All @@ -389,7 +389,7 @@ def __init__(
1,
weight_col=node_weight_prop_col,
default_weight=default_node_weight,
misc_properties_col=misc_node_properties_col,
misc_properties_col=misc_properties_col,
)
node_propertystore = PropertyStore(
ndfp, default_weight=default_node_weight
Expand Down
2 changes: 1 addition & 1 deletion hypernetx/classes/property_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def set_defaults(self, defaults) -> None:
else:

def grabprop(cell):
return cell.get(k, v)
return cell.pop(k, v)

self._data[k] = self._data["misc_properties"].map(grabprop)
new_cols.append(k)
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.8"
version = "2.3.9"
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 d641ff0

Please sign in to comment.