Skip to content

Commit 512c669

Browse files
committed
Added minium version requirements for pluggin (for new-style hookwrappers). Pytest 6.2.5 is the minimum pytest that will work with that pluggy anyway, so bump that too. Fixes #698.
1 parent 629ba64 commit 512c669

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

5+
6+
6.2.1 (2025-06-12)
7+
------------------
8+
9+
* Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023-06-21) that has the required new-style hookwrapper API.
10+
* Removed deprecated license classifier (packaging).
11+
512
6.2.0 (2025-06-11)
613
------------------
714

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,9 @@ def run(self):
124124
],
125125
python_requires='>=3.9',
126126
install_requires=[
127-
'pytest>=4.6',
127+
'pytest>=6.2.5',
128128
'coverage[toml]>=7.5',
129+
'pluggy>=1.2',
129130
],
130131
extras_require={
131132
'testing': [

0 commit comments

Comments
 (0)