guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c0f798f0ac54e792aedae6eb156a9db500fdae0a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 8 18:17:16 2026 +0000
gnu: python-pymc: Update to 5.27.0.
* gnu/packages/statistics.scm (python-pymc): Update to 5.27.0.
[arguments] <phases>: Remove 'relax-requirements.
Change-Id: I8e7cb8d2a035b922c998e79b7a07f55fe41b9979
---
gnu/packages/statistics.scm | 68 ++++++++++++++++++++++-----------------------
1 file changed, 34 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b367e44ee4..a704c177f6 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1259,42 +1259,42 @@ algorithms for evaluating Bayesian evidence.")
(define-public python-pymc
(package
(name "python-pymc")
- (version "5.21.0")
- (source (origin
- (method git-fetch) ; no tests in PyPI
- (uri (git-reference
- (url "https://github.com/pymc-devs/pymc")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0azkbl0mpanza35ibdqdm21bf45n3xi26wy01lnxzxqblcjcny9l"))))
+ (version "5.27.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pymc-devs/pymc")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0n2qj13qpd58qg8s5gx2qxiiy7hjpk6k8z0a4ysr3jc66d12s092"))))
(build-system pyproject-build-system)
(arguments
- (list #:tests? #f ; tests are too computationally intensive
- #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'versioneer
- (lambda _
- (invoke "versioneer" "install")
- (substitute* "setup.py"
- (("version=versioneer.get_version\\(),")
- (format #f "version=~s," #$version)))))
- (add-after 'unpack 'relax-requirements
- (lambda _
- (substitute* "requirements.txt"
- (("scipy>=.*")
- "scipy\n")))))))
- (native-inputs (list python-setuptools python-versioneer))
- (propagated-inputs (list python-arviz
- python-cachetools
- python-cloudpickle
- python-numpy
- python-pandas
- python-pytensor
- python-rich
- python-scipy
- python-threadpoolctl
- python-typing-extensions))
+ (list
+ #:tests? #f ; tests are too computationally intensive
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'versioneer
+ (lambda _
+ (invoke "versioneer" "install")
+ (substitute* "setup.py"
+ (("version=versioneer.get_version\\(),")
+ (format #f "version=~s," #$version))))))))
+ (native-inputs
+ (list python-setuptools
+ python-versioneer))
+ (propagated-inputs
+ (list python-arviz
+ python-cachetools
+ python-cloudpickle
+ python-numpy
+ python-pandas
+ python-pytensor
+ python-rich
+ python-scipy
+ python-threadpoolctl
+ python-typing-extensions))
(home-page "https://github.com/pymc-devs/pymc")
(synopsis "Library for probabilistic programming in Python")
(description