Updated from global requirements

Change-Id: Ie15cbd084eac56576c6d68fc036cc0e8ad245235
This commit is contained in:
OpenStack Proposal Bot 2015-07-31 16:35:05 +00:00
parent 5c702be8fd
commit 4ef0348f8d
3 changed files with 23 additions and 10 deletions

View File

@ -1,6 +1,9 @@
cryptography>=0.9.1
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
cryptography>=0.9.1 # Apache-2.0
pecan>=0.8.0
Paste
netaddr>=0.7.12
ldap3>=0.9.8.2 # LGPLv3
requests>=2.2.0,!=2.4.0
ldap3>=0.9.8.2 # LGPLv3
requests>=2.5.2

11
setup.py Executable file → Normal file
View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
#
# Licensed under the Apache License, Version 2.0 (the "License");
@ -17,6 +16,14 @@
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup(
setup_requires=['pbr'],
setup_requires=['pbr>=1.3'],
pbr=True)

View File

@ -1,10 +1,13 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
coverage>=3.6
discover
fixtures>=0.3.14
hacking>=0.9.2,<0.10
mock>=1.0
fixtures>=1.3.1
hacking<0.10,>=0.9.2
mock>=1.2
python-subunit>=0.0.18
testrepository>=0.0.18
testscenarios>=0.4
testtools>=0.9.34
requests-mock>=0.5.1
testtools>=1.4.0
requests-mock>=0.6.0 # Apache-2.0