From 2520749d1b97f1aaf190cb3bea54e2e669029a41 Mon Sep 17 00:00:00 2001 From: David Ames Date: Tue, 17 Mar 2020 13:14:43 -0700 Subject: [PATCH] Enable the py38 target The unit tests pass with python3.8 but the tox target was missing. Change-Id: I3b7d3b11d830df49ef1e4320f2cb68dc64ba06f6 --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index 560f7a9..a6a6489 100644 --- a/tox.ini +++ b/tox.ini @@ -41,6 +41,11 @@ basepython = python3.7 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt +[testenv:py38] +basepython = python3.8 +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test-requirements.txt + [testenv:pep8] basepython = python3 deps = -r{toxinidir}/requirements.txt