[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
346/361: gnu: python-cloudpickle: Update to 3.1.0.
From: |
guix-commits |
Subject: |
346/361: gnu: python-cloudpickle: Update to 3.1.0. |
Date: |
Thu, 21 Nov 2024 06:29:48 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit e2c72088b90bf2ce00254fcd7bb1e71fdc5fafef
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Nov 17 19:37:57 2024 +0000
gnu: python-cloudpickle: Update to 3.1.0.
This change merges python-cloudpickle-testpkg and python-cloudpickle
under the same variable name - python-cloudpickle, which was split 3y
ago. Build and check phases passed just fine.
* gnu/packages/python-xyz.scm (python-cloudpickle): Update to 3.1.0.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-flit-core. Remove
python-cloudpickle-testpkg, python-tornado-6.
(python-cloudpickle-testpkg): Delete variable.
Change-Id: I4f3a31f127a9079e50a0334ee55d50f61e726009
---
gnu/packages/python-xyz.scm | 45 ++++++++-------------------------------------
1 file changed, 8 insertions(+), 37 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b498d854ad..6da680bdf4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29191,10 +29191,10 @@ that is accessible to other projects developed in
Cython.")
pure-Python.")
(license license:asl2.0)))
-(define python-cloudpickle-testpkg
+(define-public python-cloudpickle
(package
- (name "python-cloudpickle-testpkg")
- (version "1.6.0")
+ (name "python-cloudpickle")
+ (version "3.1.0")
(source
(origin
;; Archive on pypi does not include test infrastructure.
@@ -29204,41 +29204,12 @@ pure-Python.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32
- "1584d21d4rcpryn8yfz0pjnjprk4zm367m0razdcz8cjbsh0dxp6"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _ (chdir "tests/cloudpickle_testpkg"))))))
- (home-page "https://github.com/cloudpipe/cloudpickle")
- (synopsis "Extended pickling support for Python objects")
- (description
- "Cloudpickle makes it possible to serialize Python constructs not
-supported by the default pickle module from the Python standard library. It
-is especially useful for cluster computing where Python expressions are
-shipped over the network to execute on remote hosts, possibly close to the
-data.")
- (license license:bsd-3)))
-
-(define-public python-cloudpickle
- (package
- (inherit python-cloudpickle-testpkg)
- (name "python-cloudpickle")
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (if tests?
- (invoke "pytest" "-s" "-vv")
- (format #t "test suite not run~%")))))))
+ (base32 "16z0jdg5b1r23vw1l0bwsg40zcmnrbznr4frjac9kq5j6jm4fw6d"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list ;; For tests.
- python-cloudpickle-testpkg python-psutil python-pytest
- python-tornado-6))
+ (list python-flit-core
+ python-psutil
+ python-pytest))
(home-page "https://github.com/cloudpipe/cloudpickle")
(synopsis "Extended pickling support for Python objects")
(description
- 312/361: gnu: python-pytest-cov: Update to 6.0.0., (continued)
- 312/361: gnu: python-pytest-cov: Update to 6.0.0., guix-commits, 2024/11/21
- 299/361: gnu: python-pytest: Update to 8.3.3., guix-commits, 2024/11/21
- 308/361: gnu: python-pytest-mock: Update to 3.14.0., guix-commits, 2024/11/21
- 313/361: gnu: python-pytest-xprocess: Update to 1.0.2., guix-commits, 2024/11/21
- 311/361: gnu: python-coverage: Update to 7.6.7., guix-commits, 2024/11/21
- 315/361: gnu: python-cffi: Update to 1.17.1., guix-commits, 2024/11/21
- 314/361: gnu: python-openpyxl: Update to 3.1.5., guix-commits, 2024/11/21
- 331/361: gnu: python-attrs: Update to 24.2.0., guix-commits, 2024/11/21
- 347/361: gnu: python-blinker: Update to 1.9.0., guix-commits, 2024/11/21
- 342/361: gnu: python-matplotlib: Disable more failing tests., guix-commits, 2024/11/21
- 346/361: gnu: python-cloudpickle: Update to 3.1.0.,
guix-commits <=
- 350/361: gnu: python-graphviz: Update to 0.20.3., guix-commits, 2024/11/21
- 352/361: gnu: python-apispec: Update to 6.7.1., guix-commits, 2024/11/21
- 353/361: gnu: python-flask-restful: Update to 0.3.10., guix-commits, 2024/11/21
- 355/361: gnu: Remove python-flask-jwt., guix-commits, 2024/11/21
- 357/361: gnu: python-httpbin: Update to 0.10.2., guix-commits, 2024/11/21
- 360/361: gnu: python-dirty-equals: Update to 0.8.0., guix-commits, 2024/11/21
- 89/361: gnu: python-nbformat: Update to 5.10.4., guix-commits, 2024/11/21
- 54/361: gnu: python-versioneer: Add missing input and use minimal git., guix-commits, 2024/11/21
- 68/361: gnu: Add python-isoduration., guix-commits, 2024/11/21
- 224/361: gnu: python-kiwisolver: Update to 1.4.6., guix-commits, 2024/11/21