14
0

- update to 3.2.3:

* Fixed bug released in 3.2.2 in which `nested_expr` could
    overwrite parse actions for defined content, and could truncate
    list of items within a nested list.
  * Released `cvt_pyparsing_pep8_names.py` conversion utility to
    upgrade pyparsing-based programs and libraries that use legacy
    camelCase names to use the new PEP8-compliant
    snake_case method names.
  * Fixed bug in `nested_expr` where nested contents were
    stripped of whitespace when the default whitespace characters
    were cleared
  * Fixed bug in `rest_of_line` and the underlying `Regex` class,
    in which matching a pattern that could match an empty string
    (such as `".*"` or `"[A-Z]*"` would not raise
    a `ParseException` at or beyond the end of the input
    string. This could cause an
    infinite parsing loop when parsing `rest_of_line` at the
    end of the input string.
  * Fixed syntax warning raised in `bigquery_view_parser.py`,
    invalid escape sequence "\s".
  * Added support for Python 3.14.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=111
This commit is contained in:
2025-04-10 17:10:44 +00:00
committed by Git OBS Bridge
parent 3612c06a0b
commit 1e7e185b5a
4 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a
size 1067694

BIN
pyparsing-3.2.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu Apr 10 17:09:14 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 3.2.3:
* Fixed bug released in 3.2.2 in which `nested_expr` could
overwrite parse actions for defined content, and could truncate
list of items within a nested list.
* Released `cvt_pyparsing_pep8_names.py` conversion utility to
upgrade pyparsing-based programs and libraries that use legacy
camelCase names to use the new PEP8-compliant
snake_case method names.
* Fixed bug in `nested_expr` where nested contents were
stripped of whitespace when the default whitespace characters
were cleared
* Fixed bug in `rest_of_line` and the underlying `Regex` class,
in which matching a pattern that could match an empty string
(such as `".*"` or `"[A-Z]*"` would not raise
a `ParseException` at or beyond the end of the input
string. This could cause an
infinite parsing loop when parsing `rest_of_line` at the
end of the input string.
* Fixed syntax warning raised in `bigquery_view_parser.py`,
invalid escape sequence "\s".
* Added support for Python 3.14.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 4 18:56:03 UTC 2025 - Dirk Müller <dmueller@suse.com> Tue Feb 4 18:56:03 UTC 2025 - Dirk Müller <dmueller@suse.com>

View File

@@ -56,7 +56,7 @@ ExclusiveArch: do-not-build
%endif %endif
%{?sle15_python_module_pythons} %{?sle15_python_module_pythons}
Name: %{pprefix}-pyparsing%{?psuffix} Name: %{pprefix}-pyparsing%{?psuffix}
Version: 3.2.1 Version: 3.2.3
Release: 0 Release: 0
Summary: Grammar Parser Library for Python Summary: Grammar Parser Library for Python
License: GPL-2.0-or-later AND MIT AND GPL-3.0-or-later License: GPL-2.0-or-later AND MIT AND GPL-3.0-or-later