Package Details: python-chumpy 0.71-2

Git Clone URL: https://aur.archlinux.org/python-chumpy.git (read-only, click to copy)
Package Base: python-chumpy
Description: Autodifferentiation tool for Python
Upstream URL: https://github.com/mattloper/chumpy
Licenses: MIT
Submitter: hottea
Maintainer: hottea (lilac)
Last Packager: lilac
Votes: 0
Popularity: 0.000000
First Submitted: 2022-05-01 15:02 (UTC)
Last Updated: 2025-01-03 03:29 (UTC)

Latest Comments

micwoj92 commented on 2025-01-03 18:01 (UTC)

So this should not be opt-dep then? I don't quite understand this.

hottea commented on 2025-01-03 04:38 (UTC)

@micwoj92 check this

micwoj92 commented on 2025-01-03 04:04 (UTC)

I checked and it's not needed for mmpose, so this package can be removed: https://github.com/open-mmlab/mmpose/pull/2899

hottea commented on 2025-01-03 03:30 (UTC)

@micwoj92 This is an upstream issue, I have updated with a patch.

micwoj92 commented on 2025-01-03 01:11 (UTC)

Doesn't seem to work

>>> import chumpy
Traceback (most recent call last):
  File "<python-input-0>", line 1, in <module>
    import chumpy
  File "/usr/lib/python3.13/site-packages/chumpy/__init__.py", line 1, in <module>
    from .ch import *
  File "/usr/lib/python3.13/site-packages/chumpy/ch.py", line 1319, in <module>
    from . import linalg
  File "/usr/lib/python3.13/site-packages/chumpy/linalg.py", line 178, in <module>
    class SvdD(Ch):
    ...<23 lines>...
            return result
  File "/usr/lib/python3.13/site-packages/chumpy/linalg.py", line 181, in SvdD
    @depends_on('x')
     ~~~~~~~~~~^^^^^
  File "/usr/lib/python3.13/site-packages/chumpy/ch.py", line 1203, in _depends_on
    want_out = 'out' in inspect.getargspec(func).args
                        ^^^^^^^^^^^^^^^^^^
AttributeError: module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?