Changelog for
python311-sybil-6.1.1-150700.3.1.noarch.rpm :
* Thu Oct 03 2024 daniel.garciaAATTsuse.com- Make seedir dependency optional for SLFO
* Thu Jun 13 2024 dmuellerAATTsuse.com- update to 6.1.1:
* Fix lexing of indented blocks where embedded blank lines would be erroneously removed.
* Mon May 13 2024 steven.kowalikAATTsuse.com- Update to 6.1.0:
* Add support for lexing nested fenced codeblocks in markdown.
* Add support for tilde-delimited codeblocks in markdown.
* Fix bug with the end offset of codeblocks in markdown.
* Support pytest 8 and above, due to yet another breaking change in an API Sybil relies on.
* Remove use of deprecated py.path.local.
* Fix lexing of ReST directives and directives-in-comments where the directives were not separated by at least one newline.
* Official support for Python 3.12 with Python 3.7 now being the minimum supported version.
* sybil.parsers.rest.lexers.DirectiveLexer and sybil.parsers.myst.lexers.DirectiveLexer directives now have their options extracted as part of the lexing process.
* Added support for MyST single-line html-style comment directives.
* Fixed parsing of MyST directive options with no leading whitespace.
* Fixed parsing of Markdown and MyST fenced codeblocks at the end of documents with no trailing newline.
* Rework document evaluators to be more flexible and structured.
* :ref:`skip
` has been reworked to check validity of operations and allow a reason to be provided for an unconditional skip so it can be highlighted as a skipped test in test runner output. The skip parsers are also now lexer-based.
* Make Region.evaluator optional, removing the need for the separate LexedRegion class.
* Fix bug in traceback trimming on the latest release of pytest.
* Fixed bug in the repr of LexedRegion instances where a lexeme was None.
* Fixed lexing of ReST directives, such as :rst:dir:`code-block`, where they occurred at the end of a docstring.
* Ensure the sybil.Document.namespace in which doctests are evaluated always has a __name__. This is required by an implementation detail of typing.runtime_checkable.
* Fix a bug that prevent r-prefixed docstrings from being correctly parsed from .py files.
* The sybil.Document.namespace can now be cleared in both ReST and MyST.
* Support for Python 3.6 has been dropped.
* Support for pytest versions earlier than 7.1 has been dropped.
* Switch :func:`sybil.parsers.myst.SkipParser` to use the correct comment character.
* Warn about ReST and MyST doctest parsers and overlapping blocks.
* Restructure to support lexing source languages such as ReST and MyST while testing examples in target languages such as Python, doctest and bash.
* Add support for MyST examples.- Drop patch pytest74.patch, included upstream.- Sprinkle in multibuild to avoid a cycle.
* Tue Jan 16 2024 mmachovaAATTsuse.com- Drop unneeded setuptools-git dependency
* Tue Jul 25 2023 mmachovaAATTsuse.com- Update to 3.0.1
* Continue with the ever shifting sands of pytest APIs, this time appeasing warnings from pytest 7 that when fixed break compatibility with pytest 6.- Drop python-sybil-fix-ordering.diff- Add pytest74.patch to support pytest 7.4
* Tue Jun 13 2023 dmuellerAATTsuse.com- tag sle15 for new python stack
* Thu Jun 09 2022 asnAATTcryptomilk.org- Add missing BR python-dataclasses for openSUSE Leap
* Wed Feb 16 2022 helAATTlcp.world- Add python-sybil-fix-ordering.diff fixing issue with tests failing on different filesystem setups.
* Mon Dec 13 2021 steven.kowalikAATTsuse.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 2021 codeAATTbnavigator.de- Update to 2.0.1
* Make :class:`~sybil.parsers.doctest.DocTestParser` more permissive with respect to tabs in documents. Tabs that aren\'t in the doctest block not longer cause parsing of the document to fail.- Release 2.0.0
* Drop support for nose.
* Handle encoded data returned by doctest execution on Python 2.
* Thu Aug 27 2020 mcalabkovaAATTsuse.com- update to 1.4.0
* Support pytest 6
* Have sybil support nested directories of source files
* Support a sequence of patterns rather than just one.
* Thu Apr 02 2020 pgajdosAATTsuse.com- version update to 1.3.0
* Treat all documentation source files as being ``utf-8`` encoded. This can be overriden by passing an encoding when instantiating a :class:`~sybil.Sybil`.
* Tue Mar 17 2020 pgajdosAATTsuse.com- version update to 1.2.2 - Improvements to :attr:`~sybil.parsers.doctest.FIX_BYTE_UNICODE_REPR` for multiple strings on a single line. - Better handling of files with Windows line endings on Linux under Python 2. - Fixes for pytest 3.1.0.
* Fri May 03 2019 pgajdosAATTsuse.com- version update to 1.2.0
* Only compile code in :ref:`codeblocks ` at evaluation time, giving :ref:`skip ` a chance to skip code blocks that won\'t compile on a particular version of Python.
* Add warning about the limitations of :attr:`~sybil.parsers.doctest.FIX_BYTE_UNICODE_REPR`.
* Support explicit filenames to include and patterns to exclude when instantiating a :class:`~sybil.Sybil`.
* Add the :ref:`skip ` parser.- deleted patches - sybil-pytest4.patch (upstreamed)
* Tue Mar 26 2019 jayvdbAATTgmail.com- Remove irrelevant and invalid runtime dependencies- Set pytest as a Recommends- Remove unnecessary build dependencies- Simplify %check routine
* Wed Nov 21 2018 tchvatalAATTsuse.com- Add patch to work with new pytest:
* sybil-pytest4.patch
* Wed Aug 29 2018 tchvatalAATTsuse.com- Raise pytest requirement to match up what is in setup.py
* Sat Aug 11 2018 tchvatalAATTsuse.com- Version update to 1.0.9:
* Support pytest-3.7
* Sun Jul 29 2018 jengelhAATTinai.de- Do not let the description assume any specific use context.
* Thu May 24 2018 toddrme2178AATTgmail.com- Update 1.0.8
* Changes only to unit tests to support fixes in the latest release of pytest.- Update 1.0.7
* Literal tabs may no longer be included in text that is parsed by the DocTestParser. Previously, tabs were expanded which could unpleasant problems.- spec file cleanups
* Fri Jan 05 2018 alarrosaAATTsuse.com- Update to 1.0.6
* Fix compatibility with pytest 3.3+.
* Mon Oct 09 2017 alarrosaAATTsuse.com- Fixed %check section and add python-virtualenv to the build requirements.- Add a longer description to the package.
* Wed Aug 23 2017 t.grunerAATTkatodev.de- Initial release 1.0.5