Skip to content

Commit b493935

Browse files
committed
pylint-pytest and pytest>8.2.1 create a weird error for pylint
Fixes #67 as a stop-gap measure (and luckily gives me fuel to debug the dreaded `cannot-enumerate-pytest-fixtures` issue: #68) Signed-off-by: Stavros Ntentos <[email protected]>
1 parent d73c814 commit b493935

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## [1.1.8] - 2024-05-23
6+
7+
This is a small release to block updating to `pytest>8.2.0`, as it causes an error (https://github.com/pylint-dev/pylint-pytest/issues/67)
8+
9+
### Fixed
10+
11+
* `pylint-pytest` and `pytest>8.2.1` create a weird error for `pylint` (https://github.com/pylint-dev/pylint-pytest/issues/67)
12+
513
## [1.1.7] - 2023-12-04
614

715
This is a small release to support additionally Pylint v3.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="pylint-pytest",
14-
version="1.1.7",
14+
version="1.1.8",
1515
author="Stavros Ntentos",
1616
author_email="[email protected]",
1717
license="MIT",
@@ -29,7 +29,7 @@
2929
packages=find_packages(exclude=["tests*", "sandbox"]),
3030
install_requires=[
3131
"pylint>=2",
32-
"pytest>=4.6",
32+
"pytest>=4.6,<=8.2.0",
3333
],
3434
python_requires=">=3.6",
3535
classifiers=[

0 commit comments

Comments
 (0)