We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a719e commit 8f7649cCopy full SHA for 8f7649c
munet/native.py
@@ -24,7 +24,12 @@
24
25
from pathlib import Path
26
27
-import yaml
+
28
+try:
29
+ # We only want to require yaml for the gen cloud image feature
30
+ import yaml
31
+except ImportError:
32
+ pass
33
34
from . import cli
35
from .base import BaseMunet
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "munet"
3
-version = "0.15.3"
+version = "0.15.4"
4
description = "A package to facilitate network simulations"
5
authors = ["Christian Hopps <chopps@labn.net>"]
6
license = "GPL-2.0-or-later"
0 commit comments