- Update to 2.0.0:

* Prior to version 2, we failed to correctly support true Pytest
    setup/teardown methods (i.e. setup_method and teardown_method) and
    these would not get copied to inner class scopes. This has been fixed.
    We still support old nose-style setup/teardown for now, despite them
    going away in Pytest 8.
  * Modernize codebase/project a bunch:
    + Dropped support for Python <3.6 (including 2.7)
    + Pytest support upgraded to support, and require, Pytest >=7.
    + Behavioral changes in Pytest internals have fixed a handful of
      sorta-bugs present in pytest-relaxed under Pytest versions 3 and 4.
- Dropped patches pytest-6.1-and-7.patch, pytest-relaxed-pr10.patch:
  * No longer required.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-relaxed?expand=0&rev=18
This commit is contained in:
2023-01-05 03:29:55 +00:00
committed by Git OBS Bridge
parent f73ca54193
commit 8bdf5ad79a
6 changed files with 27 additions and 412 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Thu Jan 5 03:25:46 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 2.0.0:
* Prior to version 2, we failed to correctly support true Pytest
setup/teardown methods (i.e. setup_method and teardown_method) and
these would not get copied to inner class scopes. This has been fixed.
We still support old nose-style setup/teardown for now, despite them
going away in Pytest 8.
* Modernize codebase/project a bunch:
+ Dropped support for Python <3.6 (including 2.7)
+ Pytest support upgraded to support, and require, Pytest >=7.
+ Behavioral changes in Pytest internals have fixed a handful of
sorta-bugs present in pytest-relaxed under Pytest versions 3 and 4.
- Dropped patches pytest-6.1-and-7.patch, pytest-relaxed-pr10.patch:
* No longer required.
-------------------------------------------------------------------
Tue Apr 12 19:41:01 UTC 2022 - Ben Greiner <code@bnavigator.de>