diff options
author | Sharlatan Hellseher <[email protected]> | 2024-11-22 16:17:08 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-12-13 20:23:29 +0000 |
commit | e190cfa13f6762a6499dd623c85393b63c1ce511 (patch) | |
tree | a3421d692f155fb8ac91e7570da7f8c1e1c812d1 | |
parent | 53f4a680faf7b0a8e9810fa199f7c1eb95e48534 (diff) |
gnu: python-astroid: Update to 3.3.4.
* gnu/packages/python-xyz.scm (python-astroid): Update to 3.3.4.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Remove python-pytest-runner; add python-setuptools and
python-wheel.
Change-Id: Iba903fcf31f5ff7b014d74426f91e80f17877fff
-rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 584f407952..6eb1b79ecd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24966,7 +24966,7 @@ both as keys and as attributes.") (define-public python-astroid (package (name "python-astroid") - (version "2.11.7") + (version "3.3.4") (source (origin (method git-fetch) @@ -24975,12 +24975,16 @@ both as keys and as attributes.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0lmm5bhszg1nj0xsjnh5nm39if2jzpa3ycgvhy6ddycz28dy568y")))) - (build-system python-build-system) - (propagated-inputs - (list python-lazy-object-proxy python-typing-extensions python-wrapt)) + (base32 "16cnfis2d0cyqxxx7iqi3n7ljhd55yv9v9yl1kl59k4a5jg4cnpx")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest python-pytest-runner)) + (list python-pytest + python-setuptools + python-wheel)) + (propagated-inputs + (list python-lazy-object-proxy + python-typing-extensions + python-wrapt)) (home-page "https://github.com/PyCQA/astroid") (synopsis "Python source code base representation") (description "@code{python-astroid} provides a common base representation |