(self)
| 1438 | pass |
| 1439 | |
| 1440 | def run(self): |
| 1441 | vers = get_versions(verbose=True) |
| 1442 | print("Version: %s" % vers["version"]) |
| 1443 | print(" full-revisionid: %s" % vers.get("full-revisionid")) |
| 1444 | print(" dirty: %s" % vers.get("dirty")) |
| 1445 | if vers["error"]: |
| 1446 | print(" error: %s" % vers["error"]) |
| 1447 | cmds["version"] = cmd_version |
| 1448 | |
| 1449 | # we override "build_py" in both distutils and setuptools |
nothing calls this directly
no test coverage detected