15
0
forked from pool/python-parsy

Accepting request 1177637 from home:mschreiner:branches:devel:languages:python

- Update to 2.1:
  * Dropped support for Python 3.7.
  * Test against Python 3.11.
  * Added docstrings and basic type hints to all primitives and main
    methods.
- Changes from 2.0:
  * Dropped support for Python < 3.6.
  * Added Parser.until().
  * Parser.optional() now supports an optional default argument to be
    returned instead None.
- Changes from 1.4:
  * Documentation improvements.
  * Added group parameter to regex().
  * Support bytes with regex() as well as str.
  * Added forward_declaration.
- Apply spec-cleaner.

OBS-URL: https://build.opensuse.org/request/show/1177637
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-parsy?expand=0&rev=3
This commit is contained in:
2024-05-29 20:59:34 +00:00
committed by Git OBS Bridge
parent 90ca6dacde
commit 0cfee29c52
4 changed files with 28 additions and 7 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Wed May 29 19:49:25 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
- Update to 2.1:
* Dropped support for Python 3.7.
* Test against Python 3.11.
* Added docstrings and basic type hints to all primitives and main
methods.
- Changes from 2.0:
* Dropped support for Python < 3.6.
* Added Parser.until().
* Parser.optional() now supports an optional default argument to be
returned instead None.
- Changes from 1.4:
* Documentation improvements.
* Added group parameter to regex().
* Support bytes with regex() as well as str.
* Added forward_declaration.
- Apply spec-cleaner.
-------------------------------------------------------------------
Sat Jan 23 06:12:24 AM UTC 2021 - John Vandenberg <jayvdb@gmail.com>