Revisions of python-typed-ast

buildservice-autocommit accepted request 1114754 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 49)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 48)
- update to 1.5.5:
  * update project to be end of life
  * set dev status to inactive
  * Use PyUnicode_DecodeUnicodeEscape directly, rather than wrapping it.
  * Recommend ast on Python 3.8+
 * Add a kind field to Bytes as well (#83)
 * Fix await in functions with type comments (#86)
 * Put _ast3 and _ast27 in the typed_ast package (#85)
buildservice-autocommit accepted request 1085637 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 47)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1085602 from Johannes Kastl's avatar Johannes Kastl (ojkastl_buildservice) (revision 46)
add sle15_python_module_pythons
buildservice-autocommit accepted request 979649 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 45)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 44)
fix changelog
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 43)
- Release version 1.5.4 (#189)
 - Do not include now private code.h (#188)
   As of https://github.com/python/cpython/pull/32385 the header
   code.h is private but directly included into Python.h
 - Fix Python 3.11 support (#187)
   The compilation error on master is:
   ```
       ast3/Parser/tokenizer.c:1991:10: error: implicit declaration of function '_Py_dup' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
           fd = _Py_dup(fd);
                ^
       1 error generated.
   ```
   Probably as a result of https://github.com/python/cpython/pull/30484
   Just declaring it seems to fix things.
   Add a (slightly) hacky way of testing Python 3.11 in CI prior to manylinux / cibuildwheel support.
 - Bump version to 1.5.4.dev0 (#186)
 - Release version 1.5.3 (#185)
 - FIX: Account form stdbool.h being included in Python.h (#184)
   As of CPython 3.11 (via https://github.com/python/cpython/pull/29883) stdbool.h
   is now included in Python.h so do attempt to redefine bool/true/false.
 - Bump version to 1.5.3.dev0
 - Release version 1.5.2
 - Add support for building aarch64 wheels (#182)
   Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
 - Remove update process document (#177)
   typed_ast will not be updated to support syntax past Python 3.8 as
   Python 3.8's ast module now incorporates the features of typed_ast.
 - Bump version to 1.5.2.dev0
 - Release version 1.5.1 (#181)
   Co-authored-by: hauntsaninja <>
 - Fix #167: Port ast27 to Python 3.11 (#176)
   Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in
   ast27/Python/mystrtoul.c. The symbol has been removed from the public
   Python 3.11 C API.
 - Bump version to 1.5.1.dev0
buildservice-autocommit accepted request 972928 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 42)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 41)
- Release version 1.5.3 (#185)
 - FIX: Account form stdbool.h being included in Python.h (#184)
   As of CPython 3.11 (via https://github.com/python/cpython/pull/29883) stdbool.h
   is now included in Python.h so do attempt to redefine bool/true/false.
 - Bump version to 1.5.3.dev0
 - Release version 1.5.2
 - Add support for building aarch64 wheels (#182)
   Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
 - Remove update process document (#177)
   typed_ast will not be updated to support syntax past Python 3.8 as
   Python 3.8's ast module now incorporates the features of typed_ast.
 - Bump version to 1.5.2.dev0
 - Release version 1.5.1 (#181)
   Co-authored-by: hauntsaninja <>
 - Fix #167: Port ast27 to Python 3.11 (#176)
   Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in
   ast27/Python/mystrtoul.c. The symbol has been removed from the public
   Python 3.11 C API.
 - Bump version to 1.5.1.dev0
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 40)
- Release version 1.5.2
 - Add support for building aarch64 wheels (#182)
   Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
 - Remove update process document (#177)
   typed_ast will not be updated to support syntax past Python 3.8 as
   Python 3.8's ast module now incorporates the features of typed_ast.
 - Bump version to 1.5.2.dev0
 - Release version 1.5.1 (#181)
   Co-authored-by: hauntsaninja <>
 - Fix #167: Port ast27 to Python 3.11 (#176)
   Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in
   ast27/Python/mystrtoul.c. The symbol has been removed from the public
   Python 3.11 C API.
 - Bump version to 1.5.1.dev0
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 39)
- Release version 1.5.1 (#181)
   Co-authored-by: hauntsaninja <>
 - Fix #167: Port ast27 to Python 3.11 (#176)
   Copy _PyLong_DigitValue table from Python 3.10 as "digitvalue" in
   ast27/Python/mystrtoul.c. The symbol has been removed from the public
   Python 3.11 C API.
 - Bump version to 1.5.1.dev0
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 38)
Fix patch definition.
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 37)
use patch source url directly
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 36)
- Add patch use-PyUnicode_DecodeUnicodeEscape.patch:
  * Use PyUnicode_DecodeUnicodeEscape directly, rather than wrapping it.
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 35)
- update to 1.5.0:
  * Drop python 3.5 support
  * Define _PyUnicode_DecodeUnicodeEscape even on Python 3.6+
  * Recommend ast on Python 3.8+
buildservice-autocommit accepted request 887094 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 34)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 33)
- update to version 1.4.3:
 - Download wheels for 3.9 as well
 - Download aarch64 wheels (#154)
 - Allow compilation on python 3.10.0a6 (#155)
   Closes #156. (Except for Apple Silicon.)
 - Fix compilation on python 3.10.0a7 (#158)
 - PyArena was removed from the public api in python/cpython#25007
 - This commit adds two new files (a copy of each for ast27 and ast3):
   * pycore_pyarena.h: Taken from the cpython source code with minimal
     changes
   * pyarena.h: Maps the new, underscored function names to the old
     function names, allowing the code to work on both python 3.10 and
     older versions
 - Add Python 3.10 classifier (#160)
buildservice-autocommit accepted request 861048 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 32)
baserev update by copy to link target
Sebastian Wagner's avatar Sebastian Wagner (sebix) committed (revision 31)
- remove obsolete ast27-prefix-exported-symbols.patch, included upstream
- update to version 1.4.2:
 - Fix linker error in debug build (#131)
 - Fix cross compile by adjusting includes (#135)
 - Add note in incompatabilities that PyPy is broken and unsupported (#144)
 - Remove reference to PyNode_ListTree for Python 3.10 (#153)
 - ast27: prefix exported symbols (#152)
 - Add 3.9 to supported versions
buildservice-autocommit accepted request 859414 from Sebastian Wagner's avatar Sebastian Wagner (sebix) (revision 30)
baserev update by copy to link target
Displaying revisions 1 - 20 of 49
openSUSE Build Service is sponsored by