From 867b421178d5d19380166c2d6f5d6ca4951a00ea Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 21 Aug 2010 22:14:57 +0200 Subject: [PATCH] Invert setup.py uuid logic. --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index af9e660c5..3b1d2d911 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ A development egg can be found `here `_. ''' -requires = ['Pygments>=0.8', 'Jinja2>=2.2', 'docutils>=0.5', 'uuid>=1.30'] +requires = ['Pygments>=0.8', 'Jinja2>=2.2', 'docutils>=0.5'] if sys.version_info < (2, 4): print('ERROR: Sphinx requires at least Python 2.4 to run.') @@ -61,10 +61,10 @@ if sys.version_info < (2, 5): except: pass else: - del requires[-2] -elif sys.version_info >= (2, 5): - # An uuid module has been added to the stdlib in 2.5 - del requires[-1] + del requires[-1] + + # The uuid module is new in the stdlib in 2.5 + requires.append('uuid>=1.30') # Provide a "compile_catalog" command that also creates the translated