From e2d2e86eba41ddb968b6714eb62ab392a21d2c8f53d4e12f611d0cf476a19266 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 2 Jan 2024 21:17:09 +0000 Subject: [PATCH] - 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/package/show/devel:languages:python/python-pegen?expand=0&rev=3 --- pegen-0.2.0.tar.gz | 3 --- pegen-0.3.0.tar.gz | 3 +++ python-pegen.changes | 12 +++++++++++- python-pegen.spec | 6 +++--- 4 files changed, 17 insertions(+), 7 deletions(-) delete mode 100644 pegen-0.2.0.tar.gz create mode 100644 pegen-0.3.0.tar.gz diff --git a/pegen-0.2.0.tar.gz b/pegen-0.2.0.tar.gz deleted file mode 100644 index d7ff411..0000000 --- a/pegen-0.2.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0cd306d5b1073542c177035c3caa4526cd10f674a74d6ab40d9a94c57fe1ff33 -size 3798460 diff --git a/pegen-0.3.0.tar.gz b/pegen-0.3.0.tar.gz new file mode 100644 index 0000000..3c4fded --- /dev/null +++ b/pegen-0.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb30cee508a95c573aa256ed2cfa80ef8f561b90264c70e7de5afc50b4ac87d +size 3803936 diff --git a/python-pegen.changes b/python-pegen.changes index 73c486d..2aac177 100644 --- a/python-pegen.changes +++ b/python-pegen.changes @@ -1,4 +1,14 @@ +------------------------------------------------------------------- +Tue Jan 2 21:16:25 UTC 2024 - Dirk Müller + +- 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 -- Initial release of 0.2.0 +- Initial release of 0.2.0 diff --git a/python-pegen.spec b/python-pegen.spec index d3de892..fbb5b98 100644 --- a/python-pegen.spec +++ b/python-pegen.spec @@ -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}