diff --git a/tox.ini b/tox.ini index 0c83767..cea72f3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = python39,python310,python311 +envlist = python39 [travis] python = @@ -9,21 +9,21 @@ python = [testenv:python39] install_command = - python -m pip install --upgrade pip {opts} {packages} - pip install -e . {opts} {packages} + python -m pip install --upgrade pip + pip install -e . extras = tests,docs commands = python -m pytest [testenv:python310] install_command = - python -m pip install --upgrade pip {opts} {packages} - pip install -e . {opts} {packages} + python -m pip install --upgrade pip {packages} + pip install -e . {packages} extras = tests,docs commands = python -m pytest [testenv:python311] install_command = - python -m pip install --upgrade pip {opts} {packages} - pip install -e . {opts} {packages} + python -m pip install --upgrade pip {packages} + pip install -e . {packages} extras = tests,docs commands = python -m pytest