Skip to content

Commit

Permalink
pylint-pytest and pytest>8.2.1 create a weird error for pylint
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
stdedos committed May 23, 2024
1 parent d73c814 commit b493935
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [1.1.8] - 2024-05-23

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)

### Fixed

* `pylint-pytest` and `pytest>8.2.1` create a weird error for `pylint` (https://github.com/pylint-dev/pylint-pytest/issues/67)

## [1.1.7] - 2023-12-04

This is a small release to support additionally Pylint v3.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="pylint-pytest",
version="1.1.7",
version="1.1.8",
author="Stavros Ntentos",
author_email="[email protected]",
license="MIT",
Expand All @@ -29,7 +29,7 @@
packages=find_packages(exclude=["tests*", "sandbox"]),
install_requires=[
"pylint>=2",
"pytest>=4.6",
"pytest>=4.6,<=8.2.0",
],
python_requires=">=3.6",
classifiers=[
Expand Down

0 comments on commit b493935

Please sign in to comment.