15
0
forked from pool/python-sybil

- Update to 3.0.0:

* Require pytest 6.2.0.
  * Drop Python 2 support.
  * Add support for Python 3.10
  * Remove the encoding parameter to
    :class:`~sybil.parsers.doctest.DocTestParser` as it is no longer used.
  * :class:`~sybil.parsers.codeblock.CodeBlockParser` has been renamed to
    :class:`~sybil.parsers.codeblock.PythonCodeBlockParser`, see the
    :ref:`codeblock-parser` documentation for details.
  * Support has been added to check examples in Python source code in
    addition to documentation source files.
  * :attr:`~sybil.parsers.doctest.FIX_BYTE_UNICODE_REPR` has been removed
    as it should no longer be needed.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sybil?expand=0&rev=25
This commit is contained in:
2021-12-13 04:12:44 +00:00
committed by Git OBS Bridge
parent f7bc4ff528
commit fd28f930b2
4 changed files with 23 additions and 6 deletions

View File

@@ -1,3 +1,20 @@
-------------------------------------------------------------------
Mon Dec 13 04:11:03 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.0.0:
* Require pytest 6.2.0.
* Drop Python 2 support.
* Add support for Python 3.10
* Remove the encoding parameter to
:class:`~sybil.parsers.doctest.DocTestParser` as it is no longer used.
* :class:`~sybil.parsers.codeblock.CodeBlockParser` has been renamed to
:class:`~sybil.parsers.codeblock.PythonCodeBlockParser`, see the
:ref:`codeblock-parser` documentation for details.
* Support has been added to check examples in Python source code in
addition to documentation source files.
* :attr:`~sybil.parsers.doctest.FIX_BYTE_UNICODE_REPR` has been removed
as it should no longer be needed.
-------------------------------------------------------------------
Mon Feb 22 19:14:00 UTC 2021 - Ben Greiner <code@bnavigator.de>