diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-04-28 14:37:24 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-04-28 14:37:24 +0200 |
commit | b7a0e0600689e9dd9a7a4a5b2bc4a957df6cfc57 (patch) | |
tree | 821534293fca429ada1815cd191f046cabb2d19c | |
parent | cc60a7e656a16fe8a3994e5046858307bb236340 (diff) | |
download | bzr-fastimport-b7a0e0600689e9dd9a7a4a5b2bc4a957df6cfc57.tar.gz |
Don't rely on bzrlib in setup.py.
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | setup.py | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -11,6 +11,8 @@ Bug fixes * Fix internal error in 'bzr fast-import-info'. (Jelmer Vernooij, #730833) +* Setup.py no longer relies on bzrlib. (Jelmer Vernooij, #735201) + 0.10 08-Mar-2011 Changes @@ -3,8 +3,7 @@ from distutils.core import setup from info import * if __name__ == '__main__': - from bzrlib import _format_version_tuple - version = _format_version_tuple(bzr_plugin_version) + version = ".".join([str(x) for x in bzr_plugin_version]) setup(name="bzr-fastimport", version=version, description="stream-based import into and export from Bazaar.", |