17
0

Compare commits

8 Commits

Author SHA256 Message Date
f2b5f8f04b Accepting request 1274910 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1274910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bytecode?expand=0&rev=13
2025-05-06 14:44:11 +00:00
2803839445 Accepting request 1274859 from home:glaubitz:branches:devel:languages:python
- Update to 0.16.2
  * fix ControlFlowGraph dead block detection by accounting for
    fall-through edges. PR #161

OBS-URL: https://build.opensuse.org/request/show/1274859
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bytecode?expand=0&rev=25
2025-05-06 11:50:02 +00:00
e8cfa2b46e Accepting request 1242862 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1242862
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bytecode?expand=0&rev=12
2025-02-03 20:45:32 +00:00
f9dc305b47 Accepting request 1242835 from home:glaubitz:branches:devel:languages:python
- Update to 0.16.1
  * Minor fixes following linter recommendations by @MatthieuDartiailh in #154
  * build(deps): bump codecov/codecov-action from 4 to 5 by @dependabot in #153
  * Fix flag inference by @MatthieuDartiailh in #157

OBS-URL: https://build.opensuse.org/request/show/1242835
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bytecode?expand=0&rev=23
2025-02-03 14:54:05 +00:00
f1eac65dc6 Accepting request 1220028 from devel:languages:python
- Update to 0.16.0:
  * Fix the document for python3.12 by @colinxu2020 in #142
  * fix: handle small try blocks by @P403n1x87 in #145
  * Add support for Python 3.13 by @MatthieuDartiailh in #146

OBS-URL: https://build.opensuse.org/request/show/1220028
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bytecode?expand=0&rev=11
2024-11-01 20:07:04 +00:00
ce9b400d3c - Update to 0.16.0:
* Fix the document for python3.12 by @colinxu2020 in #142
  * fix: handle small try blocks by @P403n1x87 in #145
  * Add support for Python 3.13 by @MatthieuDartiailh in #146

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bytecode?expand=0&rev=21
2024-11-01 08:34:00 +00:00
9d75f0daa8 Accepting request 1193951 from devel:languages:python
- use modern python on sle15
- switch to PEP517 build

OBS-URL: https://build.opensuse.org/request/show/1193951
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bytecode?expand=0&rev=10
2024-08-16 10:23:11 +00:00
b75c3edae6 - use modern python on sle15
- switch to PEP517 build

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bytecode?expand=0&rev=19
2024-08-14 15:03:57 +00:00
4 changed files with 4 additions and 24 deletions

3
bytecode-0.16.2.tar.gz Normal file
View File

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

View File

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

View File

@@ -1,23 +1,3 @@
-------------------------------------------------------------------
Wed Sep 10 06:59:32 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 0.17.0
* Add support for Python 3.14 PR #166
Support for Python 3.14, comes with a number of changes reflecting changes in
CPython bytecode itself:
- introduced an enum for BINARY_OP argument which now supports subscribe.
When disassembling the enum is always used, when creating bytecode from
scratch integer values are coerced into the right enum member.
- support BUILD_TEMPLATE, BUILD_INTERPOLATION, LOAD_SMALL_INT, LOAD_FAST_BORROW
and LOAD_FAST_BORROW_LOAD_FAST_BORROW
- LOAD_COMMON_CONSTANT, LOAD_SPECIAL whose argument is described using dedicated
enums CommonConstant, SpecialMethod
- CONVERT_VALUE (FORMAT_VALUE in Python < 3.13) now use the FormatValue enum.
When disassembling the enum is always used, when creating bytecode from
scratch integer values are coerced into the right enum member.
* properly set the next_block attribute of the new block created by
ControlFlowGraph.split_block. PR #170
-------------------------------------------------------------------
Tue May 6 10:22:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-bytecode
Version: 0.17.0
Version: 0.16.2
Release: 0
Summary: Python module to generate and modify bytecode
License: MIT