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 b360968 commit 4cbdab0Copy full SHA for 4cbdab0
pybombs/config_file.py
@@ -48,9 +48,7 @@ def __init__(self):
48
self._load = self.yaml.load
49
self._dump = self.yaml.dump
50
else:
51
- self.yaml = yaml
52
- self._load = self.yaml.round_trip_load
53
- self._dump = self.yaml.round_trip_dump
+ raise AssertionError("Invalid ruamel.yaml version")
54
55
def load(self, fd):
56
"""Load contents of a file descriptor and return a dictionary."""
setup.py
@@ -97,7 +97,7 @@
97
"requests",
98
"six",
99
"future",
100
- "ruamel.yaml"
+ "ruamel.yaml >= 0.15.0",
101
]
102
103
setup(
0 commit comments