Package Details: python-bytecode-git 0.13.0.r45.g3a25441-2

Git Clone URL: https://aur.archlinux.org/python-bytecode-git.git (read-only, click to copy)
Package Base: python-bytecode-git
Description: Python module to modify bytecode
Upstream URL: https://github.com/MatthieuDartiailh/bytecode
Licenses: MIT
Conflicts: python-bytecode
Provides: python-bytecode
Submitter: adigitoleo
Maintainer: None
Last Packager: adigitoleo
Votes: 1
Popularity: 0.000002
First Submitted: 2020-11-17 23:32 (UTC)
Last Updated: 2022-07-13 10:32 (UTC)

Dependencies (3)

Required by (2)

Sources (1)

Latest Comments

adigitoleo commented on 2022-07-13 10:36 (UTC)

Fixed, needed a setuptools_scm dependency. Thanks for the reports, I don't use this package any more and ideally I'd move to a proper package not a git one, so I can stay on top of releases. Might do that soon if I get time.

toddejohnson commented on 2022-07-12 16:09 (UTC) (edited on 2022-07-12 16:10 (UTC) by toddejohnson)

Looks like the version routine isn't being run which is generating errors:

  File "/usr/lib/python3.10/site-packages/bytecode/__init__.py", line 42, in <module>
    from bytecode.version import __version__
ModuleNotFoundError: No module named 'bytecode.version'

adigitoleo commented on 2022-07-11 09:46 (UTC)

@toddejohnson Thanks, should be fixed now. I've removed check since upstream has CI anyway and uses tox which is not recommended for checking Arch packages.

toddejohnson commented on 2022-07-10 04:43 (UTC)

Looks like this is missing python-setuptools in makedepends when building with makechrootpkg:

==> Starting build()...                                                                                                                                                                                                                       
Traceback (most recent call last):                                                                                                                                                                                                            
  File "/build/python-bytecode-git/src/python-bytecode/setup.py", line 24, in <module>                                                                                                                                                        
    from setuptools import setup                                                                                                                                                                                                              
ModuleNotFoundError: No module named 'setuptools'                                                                                                                                                                                             

There is still an issue with the check not working. It looks like they changed the paths in a recent merge.