components/python/quantumclient/patches/requirements.patch
changeset 6858 0f8601e37dad
equal deleted inserted replaced
6857:4cbe0ba20818 6858:0f8601e37dad
       
     1 This patch updates the version requirement for "pbr" to allow using
       
     2 the newer version we have in the Userland gate.
       
     3 Without this patch setuptools tries to download an older version of
       
     4 pbr and if it can't the build fails.
       
     5 
       
     6 --- python-quantumclient-2.2.4.3/requirements.txt.~1~	2013-10-01 21:13:30.000000000 -0800
       
     7 +++ python-quantumclient-2.2.4.3/requirements.txt	2016-08-03 12:38:05.805906059 -0800
       
     8 @@ -1,2 +1,2 @@
       
     9 -pbr>=0.5.21,<1.0
       
    10 +pbr>=0.5.21
       
    11  python-neutronclient>=2.3.0,<3
       
    12 --- python-quantumclient-2.2.4.3/setup.py.~1~	2016-08-03 12:39:44.871540311 -0800
       
    13 +++ python-quantumclient-2.2.4.3/setup.py	2016-08-03 12:39:52.772238582 -0800
       
    14 @@ -19,5 +19,5 @@
       
    15  import setuptools
       
    16  
       
    17  setuptools.setup(
       
    18 -    setup_requires=['pbr>=0.5.21,<1.0'],
       
    19 +    setup_requires=['pbr>=0.5.21'],
       
    20      pbr=True)