(self)
| 1788 | pass |
| 1789 | |
| 1790 | def run(self): |
| 1791 | vers = get_versions(verbose=True) |
| 1792 | print("Version: %s" % vers["version"]) |
| 1793 | print(" full-revisionid: %s" % vers.get("full-revisionid")) |
| 1794 | print(" dirty: %s" % vers.get("dirty")) |
| 1795 | print(" date: %s" % vers.get("date")) |
| 1796 | if vers["error"]: |
| 1797 | print(" error: %s" % vers["error"]) |
| 1798 | cmds["version"] = cmd_version |
| 1799 | |
| 1800 | # we override "build_py" in setuptools |
nothing calls this directly
no test coverage detected