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.
2 parents 291a335 + 7107692 commit b3f0668Copy full SHA for b3f0668
setup.py-stubs
@@ -43,7 +43,7 @@ setup(
43
"root": "..",
44
"relative_to": __file__,
45
"local_scheme": local_scheme,
46
- "git_describe_command": "tools/describe",
+ "git_describe_command": "tools/describe --long",
47
},
48
zip_safe=False,
49
)
tools/describe
@@ -1,2 +1,3 @@
1
#!/bin/sh
2
-git describe --first-parent --dirty --tags --always --match "[1-9].*"
+# Add any supplied arguments.
3
+git describe --first-parent --dirty --tags --always --match "[1-9].*" "$@"
0 commit comments