15
0
forked from pool/python-pegen

Accepting request 1136287 from devel:languages:python

- update to 0.3.0:
  * Replace nullable_visit with NullableVisitor
  * Implement nullable detection via NullableVisitor
  * Support Python 3.11 and 3.12
  * Support Python 3.12 f-strings in grammar actions
  * Fix typing in parser class and minor f-string fix

- Initial release of 0.2.0

OBS-URL: https://build.opensuse.org/request/show/1136287
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pegen?expand=0&rev=2
This commit is contained in:
2024-01-03 11:30:50 +00:00
committed by Git OBS Bridge
4 changed files with 17 additions and 7 deletions

View File

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

3
pegen-0.3.0.tar.gz Normal file
View File

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

View File

@@ -1,4 +1,14 @@
-------------------------------------------------------------------
Tue Jan 2 21:16:25 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.3.0:
* Replace nullable_visit with NullableVisitor
* Implement nullable detection via NullableVisitor
* Support Python 3.11 and 3.12
* Support Python 3.12 f-strings in grammar actions
* Fix typing in parser class and minor f-string fix
-------------------------------------------------------------------
Wed Mar 8 06:47:06 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Initial release of 0.2.0
- Initial release of 0.2.0

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pegen
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,12 +17,12 @@
Name: python-pegen
Version: 0.2.0
Version: 0.3.0
Release: 0
Summary: CPython's PEG parser generator
License: MIT
URL: https://github.com/we-like-parsers/pegen
Source: https://files.pythonhosted.org/packages/source/p/pegen/pegen-0.2.0.tar.gz
Source: https://files.pythonhosted.org/packages/source/p/pegen/pegen-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}