14
0

- update to 2.21:

- Much improved support for C11 (multiple PRs)
  - Support for parehthesized compount statements (#423)
  - Support for modern Python versions (3.9 and 3.10)
  - Fix support for structs with nested enums (#387)
  - Multiple small bug fixes

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pycparser?expand=0&rev=29
This commit is contained in:
2021-11-29 15:48:01 +00:00
committed by Git OBS Bridge
parent 30c072d111
commit 5782eb35d2
5 changed files with 22 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
Index: pycparser-release_v2.14/setup.py
Index: pycparser-2.21/setup.py
===================================================================
--- pycparser-release_v2.14.orig/setup.py
+++ pycparser-release_v2.14/setup.py
--- pycparser-2.21.orig/setup.py
+++ pycparser-2.21/setup.py
@@ -1,11 +1,11 @@
import os, sys
try:
@@ -30,8 +30,8 @@ Index: pycparser-release_v2.14/setup.py
msg="Build the lexing/parsing tables")
@@ -60,7 +60,7 @@ setup(
'Programming Language :: Python :: 3.6',
@@ -64,7 +64,7 @@ setup(
'Programming Language :: Python :: 3.10',
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
- packages=['pycparser', 'pycparser.ply'],