14
0

- update to 2.5.0:

* Update testtools/compat.py
  * Note Python 3.5 is EOL and will be dropped after the next release
  * Fix for Python 3.10
  * Add python 3.10 to ci configuration
  * testtools.compat: provide BytesIO, StringIO again
  * Add support for Python 3.9
  * Update and simplify workflow
  * Fix UserWarning: Usage of dash-separated ...
  * Fix tests with Python 3.10
  * Remove mimeparse dependency
  * trivial: Cleanup imports
  * Re-introduce 'try\_imports'
  * Remove use of 'try\_imports'
  * tox: Don't skip sdist
  * Remove use of 'safe\_hasattr'
  * NEWS: Add note about unittest2 removal
  * Fix github actions
  * Update testtools/content.py
  * Update tox.ini
  * Update github actions config to use release 3.9
  * Drop traceback2 in favor of traceback and remove unused linecache2
  * Update tox.ini
  * Add tox.ini file
  * Remove tox.ini file
  * restore testtools/tests/test\_testcase.py
  * Remove unittest2 from setup.cfg and add tox.ini file
  * Remove unrelated change
  * Restore test\_spinner.py
  * Remove unused try\_import

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-testtools?expand=0&rev=70
This commit is contained in:
2021-10-16 19:31:23 +00:00
committed by Git OBS Bridge
parent d5cce6b72d
commit 00eb67aa94
5 changed files with 54 additions and 132 deletions

View File

@@ -1,3 +1,51 @@
-------------------------------------------------------------------
Sat Oct 16 19:29:27 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 2.5.0:
* Update testtools/compat.py
* Note Python 3.5 is EOL and will be dropped after the next release
* Fix for Python 3.10
* Add python 3.10 to ci configuration
* testtools.compat: provide BytesIO, StringIO again
* Add support for Python 3.9
* Update and simplify workflow
* Fix UserWarning: Usage of dash-separated ...
* Fix tests with Python 3.10
* Remove mimeparse dependency
* trivial: Cleanup imports
* Re-introduce 'try\_imports'
* Remove use of 'try\_imports'
* tox: Don't skip sdist
* Remove use of 'safe\_hasattr'
* NEWS: Add note about unittest2 removal
* Fix github actions
* Update testtools/content.py
* Update tox.ini
* Update github actions config to use release 3.9
* Drop traceback2 in favor of traceback and remove unused linecache2
* Update tox.ini
* Add tox.ini file
* Remove tox.ini file
* restore testtools/tests/test\_testcase.py
* Remove unittest2 from setup.cfg and add tox.ini file
* Remove unrelated change
* Restore test\_spinner.py
* Remove unused try\_import
* Test on Python 3.9-dev
* Compare items using sets instead of sequences
* Add implementation for legacy assertItemsEqual existing in unittest2 library
* Do actually remove all references to unittest2 library
* Remove the travis config
* Add back travis config
* Update testtools/testcase.py
* Limit use of unittest2 to old Python versions
* Fix syntax error test for Python 3.9
* Remove Travis CI config
* Test on GitHub Actions
* Remove stray six import
* Testtools 2.4.0 is the last to support Python 2.7
- remove python-testtools-no-unittest2.patch (upstream)
-------------------------------------------------------------------
Thu Jun 11 08:21:52 UTC 2020 - pgajdos@suse.com