Skip to content

Commit abef381

Browse files
authored
marvin: newer python setuptools doesn't like -SNAPSHOT in marvin version (#7120)
1 parent 8838943 commit abef381

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/marvin/mvn-setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def runSetupScript(args):
4848

4949

5050
if __name__ == "__main__":
51-
version = sys.argv[1]
51+
version = sys.argv[1].replace("-SNAPSHOT", "")
5252
remainingArgs = sys.argv[2:]
5353
replaceVersion(setupScript, version)
5454
runSetupScript(remainingArgs)

0 commit comments

Comments
 (0)