Skip to content

Commit bb802dc

Browse files
committed
Pull request #234: Hotfix/github issue169
Merge in HYP/hypernetx from hotfix/github_issue169 to develop * commit 'a9c05502e6394d3491960e0a124d062bd5e3c0df': bump: version 2.4.0 → 2.4.1 level attribute missing in AttrList class initialization.
2 parents adde2be + a9c0550 commit bb802dc

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
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.4.0"
3+
version = "2.4.1"
44
version_provider = "poetry"
55
version_files = [
66
"pyproject.toml",

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.4.0"
22+
__version__ = "2.4.1"
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.4.0"
14+
__version__ = "2.4.1"

hypernetx/classes/hyp_view.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ class AttrList(UserList):
314314
def __init__(self, uid, hypergraph_view, initlist=None):
315315
self._hypergraph_view = hypergraph_view
316316
self._uid = uid
317+
self._level = hypergraph_view._level
317318
if initlist is None:
318319
initlist = hypergraph_view._incidence_store.neighbors(self._level, uid)
319320
super().__init__(initlist)

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.4.0"
3+
version = "2.4.1"
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)