Skip to content

Commit c2eac9a

Browse files
Fix issue preventing releases (#343)
1 parent 07f27d2 commit c2eac9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update_semantic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def main():
4646
highest = i_version_tuple
4747
continue
4848

49-
if (highest[0] != 0 and highest[1] != 0 and highest[2] != 0):
49+
if (highest[0] != 0 or highest[1] != 0 or highest[2] != 0):
5050
print(f"v{highest[0]}.{highest[1]}.{highest[2]}")
5151
sys.exit(0)
5252
else:

0 commit comments

Comments
 (0)