Skip to content

Commit 9284969

Browse files
committed
New version
1 parent 063e09b commit 9284969

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

hypergraphx/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@
44
from hypergraphx.core.temporal_hypergraph import TemporalHypergraph
55
from . import readwrite
66

7-
__version__ = "1.7.5"
7+
import sys
8+
MIN_PYTHON_VERSION = (3, 10)
9+
assert sys.version_info >= MIN_PYTHON_VERSION, f"requires Python {'.'.join([str(n) for n in MIN_PYTHON_VERSION])} or newer"
10+
11+
__version__ = "1.7.6"

0 commit comments

Comments
 (0)