From: Oleg Broytman Date: Tue, 25 Oct 2022 21:06:36 +0000 (+0300) Subject: Tests(tox): Remove `basepython` X-Git-Tag: 3.1.0.post2~1 X-Git-Url: https://git.phdru.name/?p=mimedecode.git;a=commitdiff_plain;h=630c8296e0f3e4cd813a90ba2c3883744ace229f Tests(tox): Remove `basepython` We no longer use `TOXPYTHON`. --- diff --git a/tox.ini b/tox.ini index 7c4123d..387d574 100644 --- a/tox.ini +++ b/tox.ini @@ -3,16 +3,6 @@ minversion = 2.0 envlist = py27,py3{4,5,6,7,8,9,10},pypy [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} - pypy: {env:TOXPYTHON:pypy} deps = -rdevscripts/requirements/requirements_tests.txt changedir = test @@ -21,14 +11,3 @@ commands = {envpython} -c "import struct; print(struct.calcsize('P') * 8)" ./test_all passenv = HOME - -[gh-actions] -python = - 2.7: py27 - 3.5: py35 - 3.6: py36 - 3.7: py37 - 3.8: py38 - 3.9: py39 - 3.10: py310 - pypy-2.7: pypy