guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 183dd5294d1f6eb8b4f296c8fdce28c49d024bdc Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Aug 9 16:14:48 2025 +0100
gnu: python-cycler: Update to 0.12.1. * gnu/packages/python-xyz.scm (python-cycler): Update to 0.12.1. [build-system]: Use pyporject. [propagated-inputs]: Remove python-six. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: I220e869568761cdcbf8ba0219207c42de0271ab0 --- gnu/packages/python-xyz.scm | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1b837dc39b..f8e74d9c24 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11242,20 +11242,20 @@ transcendental functions).") (define-public python-cycler (package (name "python-cycler") - (version "0.10.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "cycler" version)) - (sha256 - (base32 - "1n69n23fak1gjxlrbhqisi2b9pv3ckrfj98llx3p53953082syyd")))) - (build-system python-build-system) - (arguments - ;; XXX: The current version requires 'coveralls' which we don't have. - ;; Enable this for the next release which uses 'python-pytest'. - '(#:tests? #f)) - (propagated-inputs - (list python-six)) + (version "0.12.1") + (source + (origin + (method git-fetch) ;no tests in PyPI archive + (uri (git-reference + (url "https://github.com/matplotlib/cycler") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "061b8vxd2kp016pnwik9jg6zqng8khzmg0p298wrz65z50yh1gg4")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) (home-page "https://matplotlib.org/cycler/") (synopsis "Composable keyword argument iterator") (description