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 64dbe2c commit 0ecf682Copy full SHA for 0ecf682
enzyme/test/upload-results.py
@@ -29,7 +29,7 @@ def extract_results(json):
29
githash = get_git_revision_hash()
30
time = get_git_revision_date().isoformat()
31
arch = platform.platform()
32
- llvm = ".".join(str(json["__version__"]))
+ llvm = ".".join(map(lambda x: str(x), json["__version__"]))
33
34
for test in json["tests"]:
35
if test["code"] == "PASS":
0 commit comments