From 4d81958587c8ebb6fa05be9fc2f80b8e480239eb Mon Sep 17 00:00:00 2001 From: Ryan P Kilby Date: Tue, 22 Oct 2019 11:34:13 -0700 Subject: [PATCH] Drop basepython from tox config Using basepython should no longer be necessary. We just need some version of Python 3 to run the env, and since the project is now Python 3-only, there is no reason to require this. Note that it was necessary previously when DRF was Python 2/3 compatible. --- tox.ini | 2 -- 1 file changed, 2 deletions(-) diff --git a/tox.ini b/tox.ini index 2c08b5ac4..587c469b1 100644 --- a/tox.ini +++ b/tox.ini @@ -44,14 +44,12 @@ deps = -rrequirements/requirements-optionals.txt [testenv:lint] -basepython = python3.8 commands = ./runtests.py --lintonly deps = -rrequirements/requirements-codestyle.txt -rrequirements/requirements-testing.txt [testenv:docs] -basepython = python3.8 skip_install = true commands = mkdocs build deps =