1
0

7 Commits

Author SHA256 Message Date
dd1457129d Accepting request 1268466 from devel:languages:python
- 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/request/show/1268466
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyparsing?expand=0&rev=53
2025-04-11 14:45:56 +00:00
a2473d2d8d - 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
2025-04-10 17:10:44 +00:00
b64aba0d51 Accepting request 1245159 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1245159
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyparsing?expand=0&rev=52
2025-02-12 20:30:59 +00:00
86a1d6ffc9 - update to 3.2.1:
* Updated generated railroad diagrams to make non-terminal
    elements links to their related sub-diagrams. This _greatly_
    improves navigation of the diagram, especially for
    large, complex parsers.
  * Simplified railroad diagrams emitted for parsers using
    `infix_notation`, by hiding lookahead terms. Renamed
    internally generated expressions for clarity, and improved
    diagramming.
  * Improved performance of `cpp_style_comment`,
    `c_style_comment`, `common.fnumber`
    and `common.ieee_float` Regex expressions.
  * Add missing type annotations to `match_only_at_col`,
    `replace_with`, `remove_quotes`, `with_attribute`, and
    `with_class`. Issue #585 reported by rafrafrek.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=109
2025-02-04 18:56:45 +00:00
2cc21bd34a Accepting request 1225956 from devel:languages:python
- update to 3.2.0:
  * Discontinued support for Python 3.6, 3.7, and 3.8. Adopted
    new Python features from Python versions 3.7-3.9:
    - Updated type annotations to use built-in container types
      instead of names imported from the `typing` module
      (e.g., `list[str]` vs `List[str]`).
    - Reworked portions of the packrat cache to leverage
      insertion-preserving ordering in dicts (including removal of
      uses of `OrderedDict`).
    - Changed `pdb.set_trace()` call in `ParserElement.set_break()`
      to `breakpoint()`.
    - Converted `typing.NamedTuple` to `dataclasses.dataclass`
      in railroad diagramming code.
    - Added `from __future__ import annotations` to clean up
      some type annotations.

OBS-URL: https://build.opensuse.org/request/show/1225956
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyparsing?expand=0&rev=51
2024-11-26 19:55:19 +00:00
e6c282814f OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=107 2024-11-23 08:34:40 +00:00
d6ca0e168d - update to 3.2.0:
* Discontinued support for Python 3.6, 3.7, and 3.8. Adopted
    new Python features from Python versions 3.7-3.9:
    - Updated type annotations to use built-in container types
      instead of names imported from the `typing` module
      (e.g., `list[str]` vs `List[str]`).
    - Reworked portions of the packrat cache to leverage
      insertion-preserving ordering in dicts (including removal of
      uses of `OrderedDict`).
    - Changed `pdb.set_trace()` call in `ParserElement.set_break()`
      to `breakpoint()`.
    - Converted `typing.NamedTuple` to `dataclasses.dataclass`
      in railroad diagramming code.
    - Added `from __future__ import annotations` to clean up
      some type annotations.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=106
2024-10-28 17:01:14 +00:00
4 changed files with 69 additions and 5 deletions

View File

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

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

Binary file not shown.

View File

@ -1,3 +1,66 @@
-------------------------------------------------------------------
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>
- update to 3.2.1:
* Updated generated railroad diagrams to make non-terminal
elements links to their related sub-diagrams. This _greatly_
improves navigation of the diagram, especially for
large, complex parsers.
* Simplified railroad diagrams emitted for parsers using
`infix_notation`, by hiding lookahead terms. Renamed
internally generated expressions for clarity, and improved
diagramming.
* Improved performance of `cpp_style_comment`,
`c_style_comment`, `common.fnumber`
and `common.ieee_float` Regex expressions.
* Add missing type annotations to `match_only_at_col`,
`replace_with`, `remove_quotes`, `with_attribute`, and
`with_class`. Issue #585 reported by rafrafrek.
-------------------------------------------------------------------
Mon Oct 28 17:00:03 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.2.0:
* Discontinued support for Python 3.6, 3.7, and 3.8. Adopted
new Python features from Python versions 3.7-3.9:
- Updated type annotations to use built-in container types
instead of names imported from the `typing` module
(e.g., `list[str]` vs `List[str]`).
- Reworked portions of the packrat cache to leverage
insertion-preserving ordering in dicts (including removal of
uses of `OrderedDict`).
- Changed `pdb.set_trace()` call in `ParserElement.set_break()`
to `breakpoint()`.
- Converted `typing.NamedTuple` to `dataclasses.dataclass`
in railroad diagramming code.
- Added `from __future__ import annotations` to clean up
some type annotations.
-------------------------------------------------------------------
Sat Aug 31 12:00:10 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-pyparsing
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -56,7 +56,7 @@ ExclusiveArch: do-not-build
%endif
%{?sle15_python_module_pythons}
Name: %{pprefix}-pyparsing%{?psuffix}
Version: 3.1.4
Version: 3.2.3
Release: 0
Summary: Grammar Parser Library for Python
License: GPL-2.0-or-later AND MIT AND GPL-3.0-or-later
@ -69,6 +69,7 @@ BuildRequires: python-rpm-macros
BuildArch: noarch
%if %{with test}
BuildRequires: %{python_module jinja2}
BuildRequires: %{python_module matplotlib}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module railroad-diagrams}
%endif