Bump hacking to version 0.9.2

Change-Id: Id15fb17d6ecb9fbff3dce0105445e78ca5948aee
This commit is contained in:
Christian Berendt 2014-07-16 14:30:07 +02:00
parent 9ab4aacbfe
commit 83843c4b57
6 changed files with 7 additions and 4 deletions

View File

@ -19,11 +19,12 @@ from __future__ import print_function
import contextlib
import json
import os
import pkg_resources
import sys
import traceback
import urllib
import pkg_resources
try:
PYPI_LOCATION = os.environ['PYPI_LOCATION']
except KeyError:
@ -61,7 +62,7 @@ def release_data(req):
attempted.append(url)
continue
return json.loads(uh.read())
attempted = [" * %s" % url for url in attempted]
attempted = [" * %s" % u for u in attempted]
raise IOError("Could not find '%s' on pypi\nAttempted urls:\n%s"
% (req.key, "\n".join(attempted)))

View File

@ -1,6 +1,6 @@
# NOTE: These are requirements for testing the requirements project only
# See global-requirements for the actual requirements list
hacking>=0.8.0,<0.9
hacking>=0.9.2,<0.10
testrepository>=0.0.17
testscenarios>=0.4
testtools>=0.9.32,<0.9.35

View File

@ -15,7 +15,6 @@
# limitations under the License.
import setuptools
from swift import __canonical_version__ as version

View File

@ -20,6 +20,7 @@ import shutil
import subprocess
import sys
import tempfile
import testtools

View File

@ -23,6 +23,7 @@ import shutil
import subprocess
import sys
import tempfile
import testtools

View File

@ -20,6 +20,7 @@ import shutil
import subprocess
import sys
import tempfile
import testtools