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 51a9522 commit 32438e1Copy full SHA for 32438e1
buildrunner/config/loader.py
@@ -138,7 +138,7 @@ def _validate_version(config: dict) -> None:
138
if "__version__" in line:
139
try:
140
version_values = (
141
- line.split("=")[1].strip().replace("'", "").split(".")
+ line.split("=")[1].strip().replace("'", "").replace('"', "").split(".")
142
)
143
buildrunner_version = f"{version_values[0]}.{version_values[1]}"
144
except IndexError as exception:
0 commit comments