summaryrefslogtreecommitdiff
path: root/setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-08-22 16:39:52 -0400
committerMicah Anderson <micah@riseup.net>2013-08-22 16:57:38 -0400
commit6d35b188b668c5007409e63a15e8340ed34dcfb8 (patch)
treec9dd25f3675b3b6f9b29b0786057f8a4d377bc2b /setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py
parent86a1089dc6694f58d0f3356bdf9c8fe4061421f5 (diff)
parent5e60e0e3af85f22aa0afe8bf0ecf85619afacfeb (diff)
Merge tag 'upstream/0.6.0.12'
Upstream version 0.6.0.12
Diffstat (limited to 'setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py')
-rw-r--r--setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py b/setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py
deleted file mode 100644
index a3a73be..0000000
--- a/setuptools_darcs-1.2.11-py2.6.egg/setuptools_darcs/_version.py
+++ /dev/null
@@ -1,16 +0,0 @@
-
-# This is the version of this tree, as created by setup.py darcsver from the Darcs patch
-# information: the main version number is taken from the most recent release
-# tag. If some patches have been added since the last release, this will have a
-# -NN "build number" suffix, or else a -rNN "revision number" suffix. Please see
-# pyutil.version_class for a description of what the different fields mean.
-
-verstr = "1.2.11"
-try:
- from pyutil.version_class import Version as pyutil_Version
- __version__ = pyutil_Version(verstr)
-except (ImportError, ValueError):
- # Maybe there is no pyutil installed, or this may be an older version of
- # pyutil.version_class which does not support SVN-alike revision numbers.
- from distutils.version import LooseVersion as distutils_Version
- __version__ = distutils_Version(verstr)