14
0

Accepting request 687400 from home:jayvdb:coala:test-rig

- Remove unnecessary dependency on python-devel
- Remove unnecessary runtime dependency on docutils
- Update URL to https://pagure.io/python-daemon/
- Update to v2.2.3
  * Use custom fake file type for testing `fileno` behaviour.
    This works around an incompatibility in Python 2.7 `file` type that
    caused test cases to fail.
  * Promote the warning for `runner` module to a `DeprecationWarning`.
    This has been an unofficial example module from the beginning, and
    it will be removed in a future version.
- from v2.2.2
  * Remove from the build system specification a white space character
    not permitted in TOML format.
  * Implement test suite automation in virtualenvs, using Tox.
- from v2.2.1
  * Add a :PEP:`518` conformant build system specification (the
    ``pyproject.toml`` file).
- from v2.2.0
  * Correct the description of the return value for
    `daemon.is_detach_process_context_required`.
  * Set a sensible default for `Distribution.script_name`.
    This works around a bug in Setuptools which calls commands before
    the `Distribution` is initialised.
  * The test suite now relies on the test discovery feature in
    ‘unittest’. This feature is in Python version 2.7 and later.
  * Improve performance of `daemon.close_all_open_files`.

OBS-URL: https://build.opensuse.org/request/show/687400
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-daemon?expand=0&rev=19
This commit is contained in:
Tomáš Chvátal
2019-03-21 16:57:22 +00:00
committed by Git OBS Bridge
parent b51784974e
commit 6342cf6d5c
4 changed files with 40 additions and 11 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Thu Mar 21 14:39:49 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Remove unnecessary dependency on python-devel
- Remove unnecessary runtime dependency on docutils
- Update URL to https://pagure.io/python-daemon/
- Update to v2.2.3
* Use custom fake file type for testing `fileno` behaviour.
This works around an incompatibility in Python 2.7 `file` type that
caused test cases to fail.
* Promote the warning for `runner` module to a `DeprecationWarning`.
This has been an unofficial example module from the beginning, and
it will be removed in a future version.
- from v2.2.2
* Remove from the build system specification a white space character
not permitted in TOML format.
* Implement test suite automation in virtualenvs, using Tox.
- from v2.2.1
* Add a :PEP:`518` conformant build system specification (the
``pyproject.toml`` file).
- from v2.2.0
* Correct the description of the return value for
`daemon.is_detach_process_context_required`.
* Set a sensible default for `Distribution.script_name`.
This works around a bug in Setuptools which calls commands before
the `Distribution` is initialised.
* The test suite now relies on the test discovery feature in
unittest. This feature is in Python version 2.7 and later.
* Improve performance of `daemon.close_all_open_files`.
-------------------------------------------------------------------
Mon Aug 13 13:30:40 UTC 2018 - mcepl@suse.com