From aa4be4b037bc0fc3d11c655a63a8badc7fc3f270 Mon Sep 17 00:00:00 2001 From: Thanh Ha Date: Wed, 2 Oct 2019 09:16:34 -0400 Subject: [PATCH] Use python3 as basepython for docs Python 2 is soon to be EOL and we've been having issues with it as of late. Bump to Python 3 as the basepython to see if it helps with the pytest issue: ERROR: Package u'pytest' requires a different Python: 2.7.5 not in '>=3.5' Issue: https://jira.linuxfoundation.org/servicedesk/customer/portal/2/IT-17699 Signed-off-by: Thanh Ha Change-Id: Ie4c4547c9523ff5cf6c8d42e49a9514a07938e61 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index e46bdea91..a689c8b1f 100644 --- a/tox.ini +++ b/tox.ini @@ -16,6 +16,7 @@ commands = coala --non-interactive [testenv:docs] +basepython = python3 deps = -rdocs/requirements.txt commands = sphinx-build -W -n -b html -d {envtmpdir}/doctrees ./docs/ {envtmpdir}/html -- 2.36.6