From 52eb7f22b26649ccc5226040afc480dcf6d3d3d8 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Wed, 30 Nov 2016 13:53:40 -0800 Subject: [PATCH] Specify python2 for tox venv The openid library seems to have problems with python3, so specify python2 here so that when developers run the server using tox (as recommended in the docs) they run with a python version compatible with openid. Change-Id: If4a886c1d6afa20e310c56b6299e36094855e823 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index d5021600..d3a841fe 100644 --- a/tox.ini +++ b/tox.ini @@ -18,6 +18,7 @@ whitelist_externals = bash commands = flake8 [testenv:venv] +basepython = python2 commands = {posargs} [testenv:docs]