(self)
| 1507 | |
| 1508 | class cmd_sdist(_sdist): |
| 1509 | def run(self): |
| 1510 | versions = get_versions() |
| 1511 | self._versioneer_generated_versions = versions |
| 1512 | # unless we update this, the command will keep using the old |
| 1513 | # version |
| 1514 | self.distribution.metadata.version = versions["version"] |
| 1515 | return _sdist.run(self) |
| 1516 | |
| 1517 | def make_release_tree(self, base_dir, files): |
| 1518 | root = get_root() |
no test coverage detected