Skip to content

Commit d641ff0

Browse files
committed
Pull request #218: Hotfix/grabpropv2
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
2 parents 0a8ec06 + d625f2a commit d641ff0

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

.cz.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.commitizen]
22
name = "cz_conventional_commits"
3-
version = "2.3.8"
3+
version = "2.3.9"
44
version_provider = "poetry"
55
version_files = [
66
"pyproject.toml",

docs/source/algorithms/algorithms.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ algorithms.laplacians\_clustering module
4444
:undoc-members:
4545
:show-inheritance:
4646

47+
algorithms.matching\_algorithms module
48+
--------------------------------------
49+
50+
.. automodule:: algorithms.matching_algorithms
51+
:members:
52+
:undoc-members:
53+
:show-inheritance:
54+
4755
algorithms.s\_centrality\_measures module
4856
-----------------------------------------
4957

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import os
2020

2121

22-
__version__ = "2.3.8"
22+
__version__ = "2.3.9"
2323

2424

2525
# If extensions (or modules to document with autodoc) are in another directory,

hypernetx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from hypernetx.utils import *
1212
from hypernetx.utils.toys import *
1313

14-
__version__ = "2.3.8"
14+
__version__ = "2.3.9"

hypernetx/classes/hypergraph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def __init__(
370370
0,
371371
weight_col=edge_weight_prop_col,
372372
default_weight=default_edge_weight,
373-
misc_properties_col=misc_edge_properties_col,
373+
misc_properties_col=misc_properties_col,
374374
)
375375
edge_propertystore = PropertyStore(
376376
edfp, default_weight=default_edge_weight
@@ -389,7 +389,7 @@ def __init__(
389389
1,
390390
weight_col=node_weight_prop_col,
391391
default_weight=default_node_weight,
392-
misc_properties_col=misc_node_properties_col,
392+
misc_properties_col=misc_properties_col,
393393
)
394394
node_propertystore = PropertyStore(
395395
ndfp, default_weight=default_node_weight

hypernetx/classes/property_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def set_defaults(self, defaults) -> None:
233233
else:
234234

235235
def grabprop(cell):
236-
return cell.get(k, v)
236+
return cell.pop(k, v)
237237

238238
self._data[k] = self._data["misc_properties"].map(grabprop)
239239
new_cols.append(k)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hypernetx"
3-
version = "2.3.8"
3+
version = "2.3.9"
44
description = "HyperNetX is a Python library for the creation and study of hypergraphs."
55
authors = ["Brenda Praggastis <[email protected]>", "Dustin Arendt <[email protected]>",
66
"Sinan Aksoy <[email protected]>", "Emilie Purvine <[email protected]>",

0 commit comments

Comments
 (0)