diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bfe49ea..5c7fd55 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] python-version: - - '3.7' - '3.8' - '3.9' - '3.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ccd601..abcb1d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ ### Incompatible changes +- Require python 3.8+ #87 (thanks to @edgarrmondragon) - Require pytest 6+ #86 (thanks to @edgarrmondragon) ## 0.2.0 (2023-05-04) diff --git a/README.md b/README.md index 25f4dae..e60d585 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.8 - name: Install dependencies run: | diff --git a/pyproject.toml b/pyproject.toml index 2acae3e..31ce272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] # https://peps.python.org/pep-0621/#readme -requires-python = ">=3.7" +requires-python = ">=3.8" version = "0.2.0" name = "pytest-github-actions-annotate-failures" description = "pytest plugin to annotate failed tests with a workflow command for GitHub Actions" @@ -25,7 +25,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Framework :: Pytest", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", diff --git a/tox.ini b/tox.ini index 9fa1583..4c1b823 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] envlist = - py{37,38,39,310,311,312}-pytest{6,7,8} + py{38,39,310,311,312}-pytest{6,7,8} pkg [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 3.10: py310