We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 063e09b commit 9284969Copy full SHA for 9284969
hypergraphx/__init__.py
@@ -4,4 +4,8 @@
4
from hypergraphx.core.temporal_hypergraph import TemporalHypergraph
5
from . import readwrite
6
7
-__version__ = "1.7.5"
+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