diff --git a/changelog.md b/changelog.md index b5166da..b0d7a90 100644 --- a/changelog.md +++ b/changelog.md @@ -20,6 +20,15 @@ All notable changes to this project be documented in this file. --> +## [2.2.4] - 2024-Jan-* + +- fix [153](https://github.com/okken/pytest-check/issues/153) + - Summaries from 2.2.3 are cool, but don't work for pytest < 7.3 + - Remove them for earlier pytest + - Add tox test run for pytest 7.0.0 + - Change dependencies to require 7.0.0 pytest + + ## [2.2.3] - 2023-Dec-31 - Check failure info now shows up in summaries. diff --git a/pyproject.toml b/pyproject.toml index 8bd402a..f16c55d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ authors = [{name = "Brian Okken"}] readme = "README.md" license = {file = "LICENSE.txt"} description="A pytest plugin that allows multiple failures per test." -version = "2.2.3" +version = "2.2.4" requires-python = ">=3.7" classifiers = [ "License :: OSI Approved :: MIT License", "Framework :: Pytest" , ] -dependencies = ["pytest"] +dependencies = ["pytest>=7.0.0"] [project.urls] Home = "https://github.com/okken/pytest-check"