14
0

- update to 2.6.0:

* Add support for Python 3.10 and 3.11.
  * Drop support for Python 3.5 (EOL).
  * Use ``CompoundFixture`` from ``fixtures>=2.0`` rather than
    rolling our own.
  * Make ``TestCase`` hashable.
  * Prevent ``AttributeError`` in ``TestCase.__eq__`` for objects
    lacking a ``__dict__`` attribute.
  * Replace deprecated ``cgi`` module usage with ``email``.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-testtools?expand=0&rev=77
This commit is contained in:
2023-05-04 21:21:15 +00:00
committed by Git OBS Bridge
parent d58749d35a
commit cd6e217982
4 changed files with 18 additions and 7 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Thu May 4 21:18:15 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.6.0:
* Add support for Python 3.10 and 3.11.
* Drop support for Python 3.5 (EOL).
* Use ``CompoundFixture`` from ``fixtures>=2.0`` rather than
rolling our own.
* Make ``TestCase`` hashable.
* Prevent ``AttributeError`` in ``TestCase.__eq__`` for objects
lacking a ``__dict__`` attribute.
* Replace deprecated ``cgi`` module usage with ``email``.
-------------------------------------------------------------------
Fri Apr 21 12:37:23 UTC 2023 - Dirk Müller <dmueller@suse.com>