From f961036f41b528e060cd5450e220226e89bb64be Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 26 Oct 2022 00:06:28 +0300 Subject: [PATCH] Tests(tox): Remove `basepython` We no longer use `TOXPYTHON`. --- tox.ini | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tox.ini b/tox.ini index 80945b6..190ecb3 100644 --- a/tox.ini +++ b/tox.ini @@ -4,15 +4,6 @@ envlist = py27-sqlite,py3{4,5,6,7,8,9,10}-sqlite,py{27,39}-flake8 # Base test environment settings [testenv] -basepython = - py27: {env:TOXPYTHON:python2.7} - py34: {env:TOXPYTHON:python3.4} - py35: {env:TOXPYTHON:python3.5} - py36: {env:TOXPYTHON:python3.6} - py37: {env:TOXPYTHON:python3.7} - py38: {env:TOXPYTHON:python3.8} - py39: {env:TOXPYTHON:python3.9} - py310: {env:TOXPYTHON:python3.10} commands = {envpython} --version {envpython} -c "import struct; print(struct.calcsize('P') * 8)" @@ -44,13 +35,3 @@ deps = commands = {[testenv]commands} flake8 - -[gh-actions] -python = - 2.7: py27 - 3.5: py35 - 3.6: py36 - 3.7: py37 - 3.8: py38 - 3.9: py39 - 3.10: py310 -- 2.39.2