113 Commits

Author SHA1 Message Date
Sean Dague
82cf7d581c update tools/integration.sh to latest version from pbr
this syncs the latest changes so we can hopefully get this out of pbr
for good and into the requirements repo.

Change-Id: I37b1510f3639c332a13bd7fc892b66f71b99b594
2015-01-13 16:20:36 -05:00
Sean Dague
8e073738db add integration test script from pbr
the integration test script shouldn't be in pbr, it should be in
requirements repo. Start the move process by copying this over
now.

Change-Id: I5795c6fe6af49eab3b028472dce800b73012d491
2014-09-02 13:07:24 -04:00
Alex Gaynor
d3c8bb436a Removed a reference to quantum and removed a dead file
Change-Id: Id1159b1d9f32d6af696159e64321312cdc374276
2013-09-26 08:24:07 -07:00
Monty Taylor
ec9cf61690 Rename pip-requires to requirements.txt.
Change-Id: I4cfdd0ef6cddfa3d75b4d650362f9645486755c8
2013-06-30 10:07:41 -04:00
Jenkins
ae33a3c088 Merge "Change requirement for hacking to >=0.5.6" 2013-06-29 16:50:40 +00:00
Jenkins
6f8d9852d8 Merge "Bump requests to 1.2.3" 2013-06-28 13:08:34 +00:00
Jenkins
a23f7ee7a3 Merge "Update pycrypto to 2.6 or later." 2013-06-28 12:54:19 +00:00
Jenkins
a0ed829d3f Merge "Require eventlet >= 0.12.0" 2013-06-28 12:54:19 +00:00
Ann Kamyshnikova
f10ee5518b Change requirement for hacking to >=0.5.6
This is needed for "# noqa" support in import strings.

Change-Id: I2bdfcea7567d2876f144271c60950ee19c9a283e
2013-06-27 10:54:49 +04:00
Chuck Short
1b10f40551 Bump requests to 1.2.3
Ubuntu 13.10 ships requests 1.2.3, so make sure
we are installing a newer version.

Change-Id: I1c703334464ca8fb886a0bd4ee6580afbaf9dd75
Signed-off-by: Chuck Short <chuck.short@canonical.com>
2013-06-26 12:03:48 -05:00
Jenkins
7c6f3cec43 Merge "Avoid jsonschema 1.4.0 - Release was pulled." 2013-06-26 12:04:31 +00:00
Eoghan Glynn
e58eb6deb7 Adding python-ceilometerclient to requires.
In order to allow ceilometer take a dependency on its own
client library.

Change-Id: I75f9ef40db0bc2e0295616809b58303f16e4a52c
2013-06-25 22:37:51 +01:00
Kiall Mac Innes
eb08796298 Avoid jsonschema 1.4.0 - Release was pulled.
JSONSchema 1.4.0 appears to have been an accidental release of 2.0
code under the 1.4.0 version. It's been pulled from PyPi, but still
exists on the OpenStack mirror.

Discussion with the infra folks suggests updating the requirements
file rather than removing the release from the mirror is the best
solution.

Change-Id: I7619cc41c7924f2f02c8cf8d17034e58ac3b116c
2013-06-25 00:47:51 +01:00
Jason Dunsmore
48825a313e Update pycrypto to 2.6 or later.
The exportKey methods weren't available in pycrypto 2.1.

Change-Id: Ia8b1e4a8257689d8f389cb15c5a7da68b5a1fe30
2013-06-24 09:26:29 -05:00
Dirk Mueller
71d06008ab Require eventlet >= 0.12.0
Update to eventlet 0.12.0 requirement from Oslo-Incubator,
commit log is:

    This version has important fixes required
    for ZeroMQ (spurious wakeups).

    Fixes bug 1065532.

    This is based on this commit from Nova:

    0.9.17 was released 2012-08-03 and
    includes two particular fixes related to OpenStack

    1. https://bitbucket.org/which_linden/eventlet/issue/123/
    Fix an exception thrown by epoll in certain cases.
    This can cause jenkins to deadlock, triggered for example by:
    https://review.openstack.org/#/c/10767/

    2. https://bitbucket.org/which_linden/eventlet/issue/115/
       https://bugs.launchpad.net/nova/+bug/903199
    Fix a significant memory leak of _DummyThread objects.

Change-Id: I4a614ff1fcd8deedfe37116d66d183e8aad4a7c3
2013-06-24 15:31:25 +02:00
Dirk Mueller
4f81f419a1 Update WebOb version dependency
Both Ceilometer and Nova require 1.2.3 or newer. Lock
it to <1.3 to be safe.

See bug #1092227 for details.

Change-Id: Iefb97291867505f7ab496789db2307aef009b640
2013-06-23 20:45:16 +02:00
Jenkins
08ec0bfcd3 Merge "Update pyparsing to 1.5.7" 2013-06-23 02:05:31 +00:00
Jenkins
f1c2472b29 Merge "Require greenlet 0.3.2 (or later)" 2013-06-23 02:04:12 +00:00
Ian Wienand
a2acf94818 Update testtools to 0.9.32
This version fixes a bug related choosing the SkipTest class with
older pythons; see
 - bug #1190951.
 - https://review.openstack.org/#/c/33769/

Change-Id: If64bd101842391d1db73addc64bd1442999dcc86
2013-06-20 16:29:58 +10:00
Jenkins
c1c695de9b Merge "Restrict jsonschema to <2 for now" 2013-06-19 12:05:19 +00:00
Xavier Queralt
409cec2abd Update pyparsing to 1.5.7
The version of cliff we are using depends on pyparsing>=1.5.7

Fixes bug #1191866

Change-Id: Ib1c11b53813ff96b750f5ffe4997ad01907d32c3
2013-06-18 10:02:07 +02:00
Jenkins
22bb64bb9f Merge "Update anyjson to 0.3.3" 2013-06-17 15:58:00 +00:00
Jenkins
15a9c0452f Merge "Add oauth2 to tools/pip-requires" 2013-06-14 14:52:55 +00:00
Dirk Mueller
5c38d13f75 Require greenlet 0.3.2 (or later)
Version 0.3.2 resolves a bug that allowed generic "except
Exception:"
clauses to catch GreenletExit exceptions.

bug 1097203

Change-Id: I5b8872088cd9ed8fc0bcca493833c11884e349e3
2013-06-13 09:56:27 +02:00
Doug Hellmann
70f2385f6b Update anyjson to 0.3.3
The new version of kombu we are using depends on
anyjson>=0.3.3.

Related to bug #1134575

Change-Id: I81a2822d9ed428ddb7a6b29f4514d39e96dd9902
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
2013-06-12 17:50:27 -04:00
Mark McClain
0dd9ff433e update pbr to latest version 0.5.16
Change-Id: Ic31313d78d535946d18bd78d08867fd75bfc47b3
2013-06-12 12:08:22 -04:00
Jenkins
e5c5d12772 Merge "Update stevedore to 0.9" 2013-06-12 15:17:43 +00:00
Jenkins
02ee80f0d5 Merge "Bump kombu requirements" 2013-06-12 15:06:25 +00:00
Doug Hellmann
e154cadf3e Update stevedore to 0.9
Use a version of stevedore that does not try to install
distribute.

Change-Id: Ib3d635b1899e1a59a08e10df103d3e93e4bb0ec6
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
2013-06-12 11:05:13 -04:00
Jenkins
9cacbeac8f Merge "Add sphinxcontrib-httpdomain" 2013-06-12 14:57:22 +00:00
Jenkins
2b829b9524 Merge "Remove distribute from the requires list." 2013-06-12 14:45:12 +00:00
Monty Taylor
102b02cdcb Remove distribute from the requires list.
We want to stop doing explicit depends on it, because it's causing
confusion with the setuptools merge.

Change-Id: I6e82ae9875db24fc3940aa119ab234657a6a2495
2013-06-11 11:26:16 -07:00
Doug Hellmann
7a81434066 Update cliff requirement to 1.4
Use a version of cliff that does not try to install
distribute.

Change-Id: Icf68295376f884b1a3ba1891dbb9fbb3dd13c201
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
2013-06-11 14:07:24 -04:00
Julien Danjou
4218dcd1ab Bump kombu requirements
Now that we require msgpack, old version of kombu are not compatible
with msgpack<0.2 and breaks. So let's depend on versions of kombu that
supports msgpack>=0.2.

Fixes: bug 1134575

Change-Id: I910ff21f3df75e486816aea533396852eb3fbf16
Signed-off-by: Julien Danjou <julien@danjou.info>
2013-06-11 18:24:43 +02:00
Ken'ichi Ohmichi
0e67f3de6d Restrict jsonschema to <2 for now
blueprint nova-api-validation-fw(Ieba96718264ad2ddfba63b65425f7e5bbb8606a9)
uses internal functions of jsonschema>=1.0.0,<2. These functions has been
changed since jsonschema 2.0.0.

Current JSON-Schema specification is draft-4, and it will be changed in
the future. So for now, this patch restricts jsonschema <2.
When full JSON-Schema specification will be implemented or we need more the
features of the latest jsonschema library, this restrictions must be changed.

Change-Id: I20c77f20cf26b19cd7293a4315d9ffda6b8b45e5
2013-06-11 09:36:46 +09:00
David Lyle
a63c0295ce Bump django-openstack-auth version
Prerequisite for blueprint multiple-service-endpoints in Horizon.

The packaging on version 1.0.10 was incomplete.

Change-Id: Iec78d2f37597d03545a3e4c59e96ac0b7df21d87
2013-06-10 15:19:47 -06:00
Julien Danjou
0635403c60 Add sphinxcontrib-httpdomain
This is already used by Ceilometer from tox.ini actually, so let's add it
here.

Change-Id: Ib041b1b86b2f7d62e832aa979100fa7864d283b0
Signed-off-by: Julien Danjou <julien@danjou.info>
2013-06-10 16:54:06 +02:00
Jenkins
d4a4388a9a Merge "Specify django_compressor version to 1.3 and higher" 2013-06-08 14:00:24 +00:00
Devananda van der Veen
4d3bea50c9 Bump version of PBR.
PBR had an issue building sphinx autodocs, which was fixed between
0.5.11 and 0.5.12. Another issue was quickly spotted and fixed the same
day, so let's bump to 0.5.13.

Change-Id: Ieb0c5f13aa9e7c30b38fbdcd9cb0aa63f339e3da
2013-06-07 11:53:41 -07:00
Jiri Tomasek
398574c4b8 Specify django_compressor version to 1.3 and higher
The d3 library requires django-compressor version 1.3 and higher

Fixes: bug #1184653

Change-Id: I4c0e4fb96b7ef2535efe1a818c884c371cbdcbc5
2013-06-03 14:49:02 +02:00
Dirk Mueller
e60166eae3 Restrict python-cinderclient to <2 for now
Better be safe than sorry and restore the upper bound
on python-cinderclient. See https://review.openstack.org/#/c/30858/
for the discussion.

Change-Id: Ia82e2f0c04dd36092059bc04e8e07990ad41ff58
2013-05-29 15:05:00 +02:00
Jenkins
e64eaf7602 Merge "Bump openstack-auth version" 2013-05-24 16:16:53 +00:00
Jenkins
a7b30240a1 Merge "Adding kazoo (Zookeeper driver)" 2013-05-24 09:38:54 +00:00
Jenkins
994fe7d529 Merge "Add requirement for PBR level >=0.5.10,<0.6" 2013-05-23 15:50:30 +00:00
Steve Martinelli
40fdc883ec Add oauth2 to tools/pip-requires
Needed for delegated auth keystone blueprint
blueprint: delegated-auth-via-oauth

Change-Id: I2af578ced347c350c01175c447482d624c6cd5a9
2013-05-22 10:51:11 -05:00
Jenkins
393ff2b861 Merge "Add sphinxcontrib-pecanwsme" 2013-05-22 14:55:19 +00:00
David Lyle
99ddaf2e99 Bump openstack-auth version
Prerequisite for blueprint multiple-service-endpoints in Horizon.

Change-Id: I26de4d91b9d93a39c99c6b74ee04f64ba1a8d93d
2013-05-22 08:50:06 -06:00
Jenkins
a42481bdd7 Merge "Add msgpack as a dependency" 2013-05-22 14:10:32 +00:00
Jenkins
dd699c4826 Merge "Cap requests <1.2.1." 2013-05-21 18:58:26 +00:00
Jenkins
80f3bcfcc1 Merge "Add python-heatclient to pip-requires" 2013-05-21 13:40:30 +00:00