621c3eb004
OpenStack is dropping the py2.7 support in ussuri cycle. puppet-* repos have to cleanup the requirement and tox for py2.7 drop. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I00c0a1457a4762df09c371582574980eb7f80c02
14 lines
446 B
INI
14 lines
446 B
INI
[tox]
|
|
minversion = 3.1
|
|
skipsdist = True
|
|
envlist = releasenotes
|
|
ignore_basepython_conflict = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} {opts} {packages}
|
|
|
|
[testenv:releasenotes]
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|