Comment 3 for bug 1458985

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to trove (master)

Reviewed: https://review.openstack.org/185714
Committed: https://git.openstack.org/cgit/openstack/trove/commit/?id=4e3e0e83c6fdd210819b2e446b379ae5bc1c838e
Submitter: Jenkins
Branch: master

commit 4e3e0e83c6fdd210819b2e446b379ae5bc1c838e
Author: Peter Stachowski <email address hidden>
Date: Tue May 26 19:33:57 2015 +0000

    Fix gate failure on gate-trove-pep8

    The gate-trove-pep8 job fails on Jenkins with the following error:

    pkg_resources.VersionConflict:
    (pbr 1.0.1 (/home/jenkins/workspace/gate-trove-pep8/
    .tox/pep8/lib/python2.7/site-packages),
    Requirement.parse('pbr<1.0,>=0.5.21'))

    This is caused by the fact that pbr has now released 1.0.1 and
    although most of the dependencies in Trove have switched to:

    pbr>=0.11,<2.0

    we are still using the hacking module from last year
    (hacking>=0.8.0,<0.9), which has pbr pegged to <1.0

    The hacking module needs to be updated and the new rules ignored.

    The following rules are now ignored:

    E111,E122,E123,E128,E251,E265,E713,F821,H105,H237,H238,H301,H305,H306,
    H307,H402,H404,H405,H407,H501,H904

    Change-Id: Ief129369bbffbaec7694e3f0d36668dde1772f05
    Closes-Bug: #1458985