Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,17 @@ 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])

## v0.1.4 (2026-01-26)

* 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)

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down