Skip to content

Commit 02cef10

Browse files
committed
fix: update minimum pytest version to 6.2.0
The previous minimum version (pytest>=3.6) was incorrect. The plugin requires the tmp_path fixture which was introduced in pytest 3.9.0. Updated to pytest>=6.2.0 because: - tmp_path fixture is stable and well-tested - Contemporary with Python 3.8+ requirement (project requires Python >=3.8) - Verified all 33 tests pass with pytest 6.2.0 on Python 3.8
1 parent 1deba12 commit 02cef10

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
]
3333
requires-python = ">=3.8"
3434
dependencies = [
35-
"pytest>=3.6",
35+
"pytest>=6.2.0",
3636
]
3737

3838
[dependency-groups]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)