(self)
| 1972 | |
| 1973 | class cmd_sdist(_sdist): |
| 1974 | def run(self): |
| 1975 | versions = get_versions() |
| 1976 | self._versioneer_generated_versions = versions |
| 1977 | # unless we update this, the command will keep using the old |
| 1978 | # version |
| 1979 | self.distribution.metadata.version = versions["version"] |
| 1980 | return _sdist.run(self) |
| 1981 | |
| 1982 | def make_release_tree(self, base_dir, files): |
| 1983 | root = get_root() |
no test coverage detected