diff options
author | Sumit Naiksatam <sumitnaiksatam@gmail.com> | 2016-02-22 12:10:17 -0800 |
---|---|---|
committer | Sumit Naiksatam <sumitnaiksatam@gmail.com> | 2016-02-22 12:10:36 -0800 |
commit | 1ec1bec0a6ff82149c030b1df68fb7cf2f09630c (patch) | |
tree | 7a69954175ae69253163dc72655514af8b712263 | |
parent | dd5fa44d7cd2f58f65e92c4d176f9f576f6d1e88 (diff) |
Syncing with mitaka dependencies
Change-Id: I99448977f2078437c083e684769c50ce432a8f68
Notes
Notes (review):
Code-Review+2: Hemanth Ravi <hemanth.ravi@oneconvergence.com>
Code-Review+2: Subrahmanyam Ongole <songole@oneconvergence.com>
Workflow+1: Subrahmanyam Ongole <songole@oneconvergence.com>
Verified+2: Jenkins
Submitted-by: Jenkins
Submitted-at: Wed, 02 Mar 2016 20:05:39 +0000
Reviewed-on: https://review.openstack.org/283236
Project: openstack/group-based-policy-automation
Branch: refs/heads/master
-rw-r--r-- | requirements.txt | 1 | ||||
-rwxr-xr-x | setup.py | 11 | ||||
-rw-r--r-- | test-requirements.txt | 31 |
3 files changed, 26 insertions, 17 deletions
diff --git a/requirements.txt b/requirements.txt index c299e3b..2594ccb 100644 --- a/requirements.txt +++ b/requirements.txt | |||
@@ -2,4 +2,5 @@ | |||
2 | # of appearance. Changing the order has an impact on the overall integration | 2 | # of appearance. Changing the order has an impact on the overall integration |
3 | # process, which may cause wedges in the gate later. | 3 | # process, which may cause wedges in the gate later. |
4 | 4 | ||
5 | pbr>=1.6 # Apache-2.0 | ||
5 | Babel>=1.3 | 6 | Babel>=1.3 |
@@ -1,4 +1,3 @@ | |||
1 | #!/usr/bin/env python | ||
2 | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. | 1 | # Copyright (c) 2013 Hewlett-Packard Development Company, L.P. |
3 | # | 2 | # |
4 | # Licensed under the Apache License, Version 2.0 (the "License"); | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
@@ -17,6 +16,14 @@ | |||
17 | # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT | 16 | # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT |
18 | import setuptools | 17 | import setuptools |
19 | 18 | ||
19 | # In python < 2.7.4, a lazy loading of package `pbr` will break | ||
20 | # setuptools if some other modules registered functions in `atexit`. | ||
21 | # solution from: http://bugs.python.org/issue15881#msg170215 | ||
22 | try: | ||
23 | import multiprocessing # noqa | ||
24 | except ImportError: | ||
25 | pass | ||
26 | |||
20 | setuptools.setup( | 27 | setuptools.setup( |
21 | setup_requires=['pbr'], | 28 | setup_requires=['pbr>=1.8'], |
22 | pbr=True) | 29 | pbr=True) |
diff --git a/test-requirements.txt b/test-requirements.txt index 6061981..9b001d1 100644 --- a/test-requirements.txt +++ b/test-requirements.txt | |||
@@ -2,23 +2,24 @@ | |||
2 | # of appearance. Changing the order has an impact on the overall integration | 2 | # of appearance. Changing the order has an impact on the overall integration |
3 | # process, which may cause wedges in the gate later. | 3 | # process, which may cause wedges in the gate later. |
4 | 4 | ||
5 | -e git://github.com/openstack/heat.git@stable/liberty#egg=heat | 5 | -e git://github.com/openstack/heat.git@master#egg=heat |
6 | -e git://git.openstack.org/openstack/python-group-based-policy-client.git@master#egg=gbpclient | 6 | -e git://git.openstack.org/openstack/python-group-based-policy-client.git@master#egg=gbpclient |
7 | # Hacking already pins down pep8, pyflakes and flake8 | 7 | # Hacking already pins down pep8, pyflakes and flake8 |
8 | hacking<0.11,>=0.10.0 | 8 | hacking<0.11,>=0.10.0 |
9 | coverage>=3.6 | 9 | bandit>=0.17.3 # Apache-2.0 |
10 | mock>=1.2 | 10 | coverage>=3.6 # Apache-2.0 |
11 | mox>=0.5.3 | 11 | kombu>=3.0.25 # BSD |
12 | mox3>=0.7.0 | 12 | mock>=1.2 # BSD |
13 | mox3>=0.7.0 # Apache-2.0 | ||
13 | PyMySQL>=0.6.2 # MIT License | 14 | PyMySQL>=0.6.2 # MIT License |
14 | oslosphinx>=2.5.0 # Apache-2.0 | 15 | oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0 |
15 | oslotest>=1.10.0 # Apache-2.0 | 16 | oslotest>=1.10.0 # Apache-2.0 |
16 | paramiko>=1.13.0 | 17 | paramiko>=1.16.0 # LGPL |
17 | qpid-python;python_version=='2.7' | 18 | qpid-python;python_version=='2.7' # Apache-2.0 |
18 | psycopg2>=2.5 | 19 | psycopg2>=2.5 # LGPL/ZPL |
19 | reno[sphinx]>=0.1.1 # Apache2 | 20 | sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD |
20 | sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 | 21 | testrepository>=0.0.18 # Apache-2.0/BSD |
21 | testrepository>=0.0.18 | 22 | testscenarios>=0.4 # Apache-2.0/BSD |
22 | testscenarios>=0.4 | 23 | testtools>=1.4.0 # MIT |
23 | testtools>=1.4.0 | 24 | testresources>=0.2.4 # Apache-2.0/BSD |
24 | testresources>=0.2.4 | 25 | reno>=0.1.1 # Apache2 |