[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/64: gnu: python-pooch: Update to 1.8.1.
From: |
guix-commits |
Subject: |
02/64: gnu: python-pooch: Update to 1.8.1. |
Date: |
Thu, 2 May 2024 10:52:10 -0400 (EDT) |
rekado pushed a commit to branch wip-python-team
in repository guix.
commit 6366c5421f71b91782df434fa7d00020a17626b4
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Apr 23 20:26:49 2024 +0200
gnu: python-pooch: Update to 1.8.1.
* gnu/packages/python-xyz.scm (python-pooch): Update to 1.8.1.
[arguments]: Enable tests, but not all of them.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest and python-setuptools-scm.
[propagated-inputs]: Add python-platformdirs; remove python-appdirs and
python-packaging.
Change-Id: I3a0f73db5c0d78c9cee24c73402e9b1e34e26b4a
---
gnu/packages/python-xyz.scm | 46 +++++++++++++++++++++++++++++++++++++++------
1 file changed, 40 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7e5ec06bab..80ec3c9d0a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26833,18 +26833,52 @@ inferring type information using compile-time
introspection.")
(define-public python-pooch
(package
(name "python-pooch")
- (version "1.3.0")
+ (version "1.8.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pooch" version))
(sha256
- (base32 "1618adsg9r8fsv422sv35z1i723q3a1iir5v7dv2sklh4pl4im1h"))))
- (build-system python-build-system)
+ (base32 "0w32fhfp67k0ip0gxjpw8kxdx9ghybxmqkv9sbwy99nrgl4n7vr7"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f)) ;requires online data
- (propagated-inputs
- (list python-appdirs python-packaging python-requests))
+ (list
+ #:test-flags
+ '(list "-k"
+ (string-append
+ ;; We don't have the test archives
+ "not test_decompress"
+ " and not test_multiple_unpacking"
+ " and not test_unpack_members_with_leading_dot"
+ " and not test_unpacking"
+ " and not test_unpacking_members_then_no_members"
+ " and not test_unpacking_wrong_members_then_no_members"
+ ;; These all require access to the internet
+ " and not test_check_availability"
+ " and not test_check_availability_invalid_downloader"
+ " and not test_check_availability_on_ftp"
+ " and not test_create_and_fetch"
+ " and not test_downloader_arbitrary_progressbar"
+ " and not test_fetch_with_downloader"
+ " and not test_figshare_data_repository_versions"
+ " and not test_load_registry_from_doi"
+ " and not test_pooch_corrupted"
+ " and not test_pooch_custom_url"
+ " and not test_pooch_download"
+ " and not test_pooch_download_retry"
+ " and not test_pooch_download_retry_fails_eventually"
+ " and not test_pooch_download_retry_off_by_default"
+ " and not test_pooch_logging_level"
+ " and not test_pooch_update"
+ " and not test_retrieve"
+ " and not test_retrieve_default_path"
+ " and not test_retrieve_fname"
+ " and not test_stream_download")
+ "--ignore=pooch/tests/test_downloaders.py")))
+ (propagated-inputs
+ (list python-packaging python-platformdirs python-requests))
+ (native-inputs
+ (list python-pytest python-setuptools-scm))
(home-page "https://github.com/fatiando/pooch")
(synopsis "Manage your Python library's sample data files")
(description
- branch wip-python-team created (now 182490b344), guix-commits, 2024/05/02
- 01/64: gnu: Add python-dask-image., guix-commits, 2024/05/02
- 02/64: gnu: python-pooch: Update to 1.8.1.,
guix-commits <=
- 04/64: gnu: Add python-xarray-schema., guix-commits, 2024/05/02
- 05/64: gnu: Add rust-lapack-sys-0.14., guix-commits, 2024/05/02
- 03/64: gnu: python-xarray-datatree: Add missing input., guix-commits, 2024/05/02
- 06/64: gnu: Add rust-lapack-0.19., guix-commits, 2024/05/02
- 08/64: gnu: Add rust-blas-0.22., guix-commits, 2024/05/02
- 09/64: gnu: Add python-pyct., guix-commits, 2024/05/02
- 10/64: gnu: Add python-nbmake., guix-commits, 2024/05/02
- 18/64: gnu: Add python-qdldl., guix-commits, 2024/05/02
- 20/64: gnu: Add python-ecos., guix-commits, 2024/05/02
- 26/64: gnu: python-xarray: Disable tests that are known to fail., guix-commits, 2024/05/02