diff --git a/README.md b/README.md index 918654b..e65c22f 100644 --- a/README.md +++ b/README.md @@ -138,8 +138,9 @@ decorators are extracted from the ast. # Changelog -## upcoming +## Unreleased +* Require pytest >= 8 ([#64][p64]) * Remove support for Python 3.7, 3.8 and 3.9. Require at least Python 3.10 ([#63][p63]) @@ -147,7 +148,7 @@ decorators are extracted from the ast. * Remove upper limit of supported pytest version ([#61][i61], [#62][p62]) * Add support for Python 3.13 and Python 3.14 ([#60][p60]) -* Switch to original `flit` build backend ([#58][p58]) +* Switch to original `flit` build backend ([#54][p54], [#58][p58]) ## v0.1.3 (2024-03-05) @@ -241,6 +242,7 @@ decorators are extracted from the ast. [i36]: https://github.com/davidfritzsche/pytest-mypy-testing/issues/36 [i46]: https://github.com/davidfritzsche/pytest-mypy-testing/issues/46 [i51]: https://github.com/davidfritzsche/pytest-mypy-testing/issues/51 +[i54]: https://github.com/davidfritzsche/pytest-mypy-testing/issues/54 [i61]: https://github.com/davidfritzsche/pytest-mypy-testing/issues/61 [p6]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/6 @@ -269,3 +271,4 @@ decorators are extracted from the ast. [p60]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/60 [p62]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/62 [p63]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/63 +[p64]: https://github.com/davidfritzsche/pytest-mypy-testing/pull/64 diff --git a/pyproject.toml b/pyproject.toml index d89749b..91afd6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,13 +31,15 @@ classifiers = [ "Typing :: Typed", ] dependencies = [ - "pytest>=7", + "pytest>=8", "mypy>=1.0", ] dynamic = ["version"] [project.urls] -source = "https://github.com/davidfritzsche/pytest-mypy-testing" +github = "https://github.com/davidfritzsche/pytest-mypy-testing" +download = "https://pypi.org/project/pytest-mypy-testing/" +issues = "https://github.com/davidfritzsche/pytest-mypy-testing/issues" [project.entry-points.pytest11] mypy-testing = "pytest_mypy_testing.plugin" diff --git a/tox.ini b/tox.ini index 8ac4f8b..8cd0478 100644 --- a/tox.ini +++ b/tox.ini @@ -15,10 +15,6 @@ minversion = 3.28 deps = -c constraints.in coverage[toml] - pytest70: pytest~=7.0.1 - pytest71: pytest~=7.1.3 - pytest72: pytest~=7.2.2 - pytest74: pytest~=7.4.4 # last version to support Python 3.7 / noble pytest80: pytest~=8.0.2 pytest81: pytest~=8.1.2 pytest83: pytest~=8.3.5 # last version to support Python 3.8 / trixie