diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index b86d32d..d512614 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -1,5 +1,7 @@ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python +#TODO: move lint to separate job +#TODO: coverage tests in separate job name: Python package @@ -16,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", 3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 43f13c7..e4060dc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,11 @@ [tox] -envlist = py36, - pypy36, - py37, - pypy37, +envlist = py38, pypy38, py39, py310, py311, + py312 [gh] python = @@ -16,8 +14,7 @@ python = 3.10 = py310 3.9 = py39 3.8 = py38 - 3.7 = py37 - 3.6 = py36 + [testenv] deps = pytest