... because it was already removed[1]. Also extras hasn't been listed
in test dependencies.
[1] 304c046b05
Change-Id: Ib5589798f8f58e8ac376bc74547da489786787e1
These excludes were removed from the requirements repo[1] and are now
detected as errors.
[1] 314734e938f107cbd5ebcc7af4d9167c11347406
Change-Id: I97b3899ce15d4a6f6248344fc7bc05c1d48f1c09
Now we generate the console script using setuptools, and we don't
expect users may directly execute the *.py file.
Change-Id: Ida036f138d8e7ef64ea0f8f7c83deeeb71dc4f5b
This is no longer needed.
Also, the options in egg_info section are not necessary and can be
removed. Especially, tag_svn_revision was already removed[1].
[1] https://github.com/pypa/setuptools/issues/619
Change-Id: Iad15ae3f3004dce4570798097ea9bd95a1799060
... because Python 2 is no longer supported. Also remove a few old
comments which are no longer valid.
Change-Id: I2260a08a0bada42300ca4058b8085ecf98d770fb
... and supported python runtime versions.
This also makes some changes in tox.ini to adapt to tox 4.
Change-Id: Icc6d7ced31b2e8bd80c6dd52ca54437e5aa35940
Setuptools v54.1.0 introduces a warning that the use of dash-separated
options in 'setup.cfg' will not be supported in a future version [1].
Get ahead of the issue by replacing the dashes with underscores. Without
this, we see 'UserWarning' messages like the following on new enough
versions of setuptools:
UserWarning: Usage of dash-separated 'description-file' will not be
supported in future versions. Please use the underscore name
'description_file' instead
[1] https://github.com/pypa/setuptools/commit/a2e9ae4cb
Change-Id: I7c495db4a467a07c648c052da4cb657e83c92e46
The mock third party library was needed for mock support in py2
runtimes. Since we now only support py36 and later, we can use the
standard lib unittest.mock module instead.
Change-Id: Ib353cf9878334d91e551bf75121413c6fb2222ea
This project is now doesn't support py27 so we can remove sphinx
constraints related to python versions
Change-Id: I9bc105931a7e6772b88d04afd6cb7151f845e5c1
Train was the last release supporting python2. Let's rip the bandaid
off.
Also includes remove tripleo jobs from os-collect-config master
Partial-Bug: #1879361
Co-Authored-By: xuanyandong <xuanyandong@inspur.com>
Co-Authored-By: Alex Schultz <aschultz@redhat.com>
Change-Id: I46c79ce87f474a986f1983fa9164e6e4cbeaf8de
Sync sphinx dependency with global requirements. It caps python 2 since
sphinx 2.0 no longer supports Python 2.7.
Change-Id: I995ea245912d5eaa1470c7c5bdeb69bdce7cfcca
The documentation currently uses '[default]' (lower case).
This configuration is not picket up.
It needs to be upper case.
Change-Id: Icbc5e7ee5178be1054b045045245d384a3957a63
Signed-off-by: Andreas Florath <Andreas.Florath@telekom.de>
This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.
This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.
This update should result in no functional change.
For more information see the thread at
http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html
Change-Id: I8446d73326d833915374836c6ec1f5d6d46bc8de
python3.5 was the only supported python3 version on Xenial, now that we have
Bionic Beaver nodes that support python3.7, lets switch to testing with
python3.7 in addition with python3.6 in Stein and beyond.
See ML discussion here [1] for context. [
[1] http://lists.openstack.org/pipermail/openstack-dev/2018-October/135632.html
Change-Id: I43ee5f72cd20d8f95f6a258dc9e4da0c799c684b
Signed-off-by: Charles Short <chucks@redhat.com>
Story: #2004073
https://review.openstack.org/#/c/619337/ switched the jobs to a noop for
master and since this file is branched we no longer need to keep this
template definition in this project.
Change-Id: Ic3447b4c26b01a8f060ab495050602cf137ba396
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: I5e855bcb2503b9e4696566175b09b2947b86de1b
Closes-Bug: #1801452
By default Python configures SIGPIPE to be SIG_IGN, which means to
ignore the signal. We don't want that as it causes problems when
journald restarts and our log calls start triggering SIGPIPEs.
Instead, we want to allow the SIGPIPE to kill the process so it can
be restarted by systemd.
Change-Id: I512139b96b2de8b372efc91e8a3fc8d33553405a
Closes-Bug: 1795030