Update git submodules

* Update oslo.concurrency from branch 'master'
  - Stop using setup.py build_sphinx
    
    This is deprecated in pbr and the preferred way to do doc builds now
    is to use sphinx-build directly.
    
    Change-Id: Id5081ffb9f5b5e6ce608d2f10e9ef89a8b40eeed
    
  - Update mailinglist from dev to discuss
    
    openstack-dev was decomissioned this night in https://review.openstack.org/621258
    Update openstack-dev to openstack-discuss
    
    Change-Id: I2cb4804c57560017008bf48b5d5b8ce71aae6da7
    
  - Merge "Add support for fair locks"
  - Add support for fair locks
    
    This adds support for a "fair" variant of the lock.  When there are
    multiple entities within a single process that are blocked waiting
    for the lock the fair lock will ensure that they acquire the lock
    in FIFO order.
    
    For now at least, when fair locks are in use we don't support
    the "semaphores" argument.
    
    If external locks are enabled, the inter-process ordering will be
    determined by the underlying OS lock ordering and process scheduling.
    
    Change-Id: I37577becff4978bf643c65fa9bc2d78d342ea35a
    
  - Clean up .gitignore references to personal tools
    
    Developers run all sorts of different tools within Git repositories,
    any of which can leave their own special trashfiles all over the
    place. We can't every hope to catalog them all, so better to
    recommend developers simply configure a global core.excludesfile to
    filter the irrelevant files which tend to get created by their
    personal choice of tools.
    
    To this end, remove the long-standing sections for "Mr Developer"
    and "Editors" since their mere existence here sends the signal that
    we welcome (and have time to review) additions for any old tool
    someone ever might happen to try. Also add a comment block
    explaining this, for clarity.
    
    We can, and should of course, continue to list files created by the
    tools recommended by our workflow (test frameworks called from tox,
    documentation and packaging builds, et cetera).
    
    This change is a port of I1b41efac219fca44e2548fc36633724d0ecfc0cb
    from the openstack-dev/oslo-cookiecutter repository.
    
    Change-Id: I454fd3920103866a39b6322d938e0c90f175489f
    
  - Merge "Always build universal wheels"
  - Don't quote {posargs} in tox.ini
    
    Quotes around {posargs} cause the entire string to be combined into one
    arg that gets passed to stestr. This prevents passing multiple args
    (e.g. '--concurrency=16 some-regex')
    
    Change-Id: I62860fe0f6cfea902c60a251408577bbe0ea894f
    
  - Always build universal wheels
    
    All of our projects are pure python, so we can build
    universal wheels by default.
    
    Change-Id: Ic72dff75b43b6ebebd4a90b2dbb9baf0db48e139
    
  - Merge "Use templates for cover and lower-constraints"
  - Imported Translations from Zanata
    
    For more information about this automatic import see:
    https://docs.openstack.org/i18n/latest/reviewing-translation-import.html
    
    Change-Id: I5d05af2e828d00f229d213b7dd5f86a831992dae
    
  - Use templates for cover and lower-constraints
    
    Use openstack-tox-cover template, this runs the cover job as
    non-voting in the check queue only.
    
    Use openstack-lower-constraints-jobs template
    
    Remove jobs that are part of the templates.
    
    Sort template list alphabetically.
    
    Fix cover tox.ini setting so that this works.
    
    Change-Id: I6e7d197b780e79f22ad936fe63da13ca48098764
    
  - Merge "add lib-forward-testing-python3 test job"
  - ignore warning from bandit for using shell=
    
    The functions in this library are meant to wrap subprocess, and
    sometimes we do want to allow passing shell=True, so mark that line
    with nosec to ignore B604.
    
    Change-Id: Iab676449e543a4fdabee62efa9283940d30e3398
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - add lib-forward-testing-python3 test job
    
    This is a mechanically generated patch to add a functional test job
    running under Python 3 as part of the python3-first goal.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: Ied3f799ccfc9946f8cbf5d5245ec5f9505bd7bdf
    Story: #2002586
    Task: #24322
    
  - Merge "add python 3.6 unit test job"
  - add python 3.6 unit test job
    
    This is a mechanically generated patch to add a unit test job running
    under Python 3.6 as part of the python3-first goal.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: I71f3a7866f8e25e37aa3cebf61d37383d25652b0
    Story: #2002586
    Task: #24322
    
  - Merge "import zuul job settings from project-config"
  - Remove PyPI downloads
    
    According to official site,
    https://packaging.python.org/guides/analyzing-pypi-package-downloads/
    PyPI package download statistics is no longer maintained and thus
    should be removed.
    
    Change-Id: I42ebd3541b8b34b5627b04676c925aa0162d058a
    
  - import zuul job settings from project-config
    
    This is a mechanically generated patch to complete step 1 of moving
    the zuul job settings out of project-config and into each project
    repository.
    
    Because there will be a separate patch on each branch, the branch
    specifiers for branch-specific jobs have been removed.
    
    See the python3-first goal document for details:
    https://governance.openstack.org/tc/goals/stein/python3-first.html
    
    Change-Id: Iaef897eec51165388f84c650495f3c708c441280
    Story: #2003250
    
  - Reorganize that 'Release Notes' in README
    
    Change-Id: I464531daf2bfb0e79afb32385ac5cd059fb6f105
    
  - Update reno for stable/rocky
    
    Change-Id: I42dc34aaddbce0948bc0c4a3a4079c7c3d9a46c2
    
  - Switch to stestr
    
    According to Openstack summit session [1],
    stestr is maintained project to which all Openstack projects should migrate.
    Let's switch to stestr as other projects have already moved to it.
    
    [1] https://etherpad.openstack.org/p/YVR-python-pti
    
    Change-Id: I753f32ecf3275cf49d8c93bf648a6a26bc6da8e7
    
  - Add release notes link to README
    
    Change-Id: I3eaedd5fc22c241b7fea56f2fedfde5592167384
    
  - fix tox python3 overrides
    
    We want to default to running all tox environments under python 3, so
    set the basepython value in each environment.
    
    We do not want to specify a minor version number, because we do not
    want to have to update the file every time we upgrade python.
    
    We do not want to set the override once in testenv, because that
    breaks the more specific versions used in default environments like
    py35 and py36.
    
    Change-Id: Ia0bccf6ed1b28f64622217d88dc6401ba6bd4406
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - Remove stale pip-missing-reqs tox test
    
    pip-check-reqs tool is no longer maintained and has broken with
    release 10 of pip
    
    Refer to:
     http://lists.openstack.org/pipermail/openstack-dev/2018-April/130027.html
    
    Change-Id: Id4217fce07cdf836df9c44dc81246154e5389150
    
  - Merge "Trivial: Update pypi url to new url"
  - Trivial: Update pypi url to new url
    
    Pypi url changed from [1] to [2]
    
    [1] https://pypi.python.org/pypi/<package>
    [2] https://pypi.org/project/<package>
    
    Change-Id: Ic0f44cb759a0ce0eb4e845656517771cf25aac3a
    
  - Merge "fix lower constraints and uncap eventlet"
  - set default python to python3
    
    Set the default python to python3 except for the py27 environment. We
    have to set that explicitly to override the new default.
    
    Change-Id: I3fa047b21fa6bc6e5bdf3222287fdce31c5ccef2
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
    
  - Switch pep8 job to python 3
    
    pep8 under python 3 is more strict than under python 2, so to make
    sure our projects meet the more strict standards we want to run the
    pep8 jobs using python 3 by default.
    
    Change-Id: Ice3cffa36e9167f2f1f30337372cf9187af5e02e
    
  - fix lower constraints and uncap eventlet
    
    Fix the lower constraints settings to match the expected values.
    
    We will manage the eventlet version using constraints now. See the
    thread starting at
    http://lists.openstack.org/pipermail/openstack-dev/2018-April/129096.html
    for more details.
    
    Change-Id: I9b2cdb68fd87e07d9ae0226bc2c1d77d6981ef52
    Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Ben Nemec 2019-01-09 23:11:16 +00:00 committed by Gerrit Code Review
parent 2eb432b8c7
commit e994e3bbc2
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit e55a18c5e0392c568ce7b5073bbcdd0786a1f315
Subproject commit b8bf7b28101ecfd8e321e4982c19f0cd7aaeb9a8