From 0fe0f0167cccc0169e146fde654aa599a01c8555 Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Tue, 25 Oct 2022 13:12:35 -0400 Subject: [PATCH] Drop unrelated Python versions Python 3.5, 3.6, and 3.7 are no longer needed on this branch. --- .github/workflows/tox.yaml | 4 ++-- tox.ini | 12 ------------ 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/tox.yaml b/.github/workflows/tox.yaml index 754ce29..ddfeff1 100644 --- a/.github/workflows/tox.yaml +++ b/.github/workflows/tox.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [3.8, 3.9] steps: - uses: actions/checkout@v1 @@ -24,4 +24,4 @@ jobs: - name: Lint with tox run: tox -e pep8 - name: Test with tox - run: tox -e py${{ matrix.python-version }} \ No newline at end of file + run: tox -e py${{ matrix.python-version }} diff --git a/tox.ini b/tox.ini index 890b193..2a8ae4b 100644 --- a/tox.ini +++ b/tox.ini @@ -30,18 +30,6 @@ commands = nosetests --with-coverage --cover-package=zaza.openstack {posargs} {t basepython = python3 deps = -r{toxinidir}/requirements.txt -[testenv:py3.5] -basepython = python3.5 -deps = -r{toxinidir}/requirements.txt - -[testenv:py3.6] -basepython = python3.6 -deps = -r{toxinidir}/requirements.txt - -[testenv:py3.7] -basepython = python3.7 -deps = -r{toxinidir}/requirements.txt - [testenv:py3.8] basepython = python3.8 deps = -r{toxinidir}/requirements.txt