(self)
| 2001 | |
| 2002 | class cmd_sdist(_sdist): |
| 2003 | def run(self): |
| 2004 | versions = get_versions() |
| 2005 | self._versioneer_generated_versions = versions |
| 2006 | # unless we update this, the command will keep using the old |
| 2007 | # version |
| 2008 | self.distribution.metadata.version = versions["version"] |
| 2009 | return _sdist.run(self) |
| 2010 | |
| 2011 | def make_release_tree(self, base_dir, files): |
| 2012 | root = get_root() |
no test coverage detected