Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f2b5f8f04b | |||
| 2803839445 | |||
| e8cfa2b46e | |||
| f9dc305b47 | |||
| f1eac65dc6 | |||
| ce9b400d3c | |||
| 9d75f0daa8 | |||
| b75c3edae6 |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7263239a8d3f70fc7c303862b20cd2c6788052e37ce0a26e67309d280e985984
|
|
||||||
size 97976
|
|
||||||
3
bytecode-0.16.2.tar.gz
Normal file
3
bytecode-0.16.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f05020b6dc1f48cdadd946f7c3a03131ba0f312bd103767c5d75559de5c308f8
|
||||||
|
size 103023
|
||||||
@@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 6 10:22:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 0.16.2
|
||||||
|
* fix ControlFlowGraph dead block detection by accounting for
|
||||||
|
fall-through edges. PR #161
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 3 13:33:39 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 1 08:33:19 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- 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
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 14 15:03:42 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- use modern python on sle15
|
||||||
|
- switch to PEP517 build
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 14 15:47:28 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Tue Nov 14 15:47:28 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-bytecode
|
# spec file for package python-bytecode
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,21 +16,21 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-bytecode
|
Name: python-bytecode
|
||||||
Version: 0.15.1
|
Version: 0.16.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to generate and modify bytecode
|
Summary: Python module to generate and modify bytecode
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
|
||||||
URL: https://github.com/vstinner/bytecode
|
URL: https://github.com/vstinner/bytecode
|
||||||
Source: https://files.pythonhosted.org/packages/source/b/bytecode/bytecode-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/b/bytecode/bytecode-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module base >= 3.8}
|
BuildRequires: %{python_module base >= 3.8}
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module setuptools_scm}
|
BuildRequires: %{python_module setuptools_scm}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module typing_extensions if %python-base < 3.10}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: (python-typing-extensions if python-base < 3.10)
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# SECTION test requirements
|
# SECTION test requirements
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
@@ -44,10 +44,10 @@ Python module to generate and modify bytecode
|
|||||||
%setup -q -n bytecode-%{version}
|
%setup -q -n bytecode-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@@ -57,6 +57,6 @@ Python module to generate and modify bytecode
|
|||||||
%doc README.rst
|
%doc README.rst
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{python_sitelib}/bytecode
|
%{python_sitelib}/bytecode
|
||||||
%{python_sitelib}/bytecode-%{version}*-info
|
%{python_sitelib}/bytecode-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|||||||
Reference in New Issue
Block a user