diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-18 10:07:50 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-19 10:00:58 -0300 |
commit | 1870e79bc22f6587ce8b94e50530b70bfd8ab08a (patch) | |
tree | 41a858e7f1627646dea418d53755253add9cf08c | |
parent | 28df9e0eb3a837781a9588f9e3e403fa859744b8 (diff) |
gnu: python-metpy: Update to 1.7.0.
* gnu/packages/geo.scm (python-metpy): Update to 1.7.0.
[arguments]<#:test-flags>: Skip two more network tests.
Change-Id: I869ace3e8ad9cbae5b53b51ce6b3a1e2fc3dcd91
-rw-r--r-- | gnu/packages/geo.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 428d222efb..a7191330cc 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -2020,13 +2020,13 @@ to create databases that are optimized for rendering/tile/map-services.") (define-public python-metpy (package (name "python-metpy") - (version "1.6.3") + (version "1.7.0") (source (origin (method url-fetch) (uri (pypi-uri "metpy" version)) (sha256 (base32 - "0rh7lslwf79sgbf0933pz6mxchbrb0434pbdzqgzs1kjlsli9pr3")))) + "1r3adxf6knplp96s5jp65lahg9r096iaq5hdhzyqpkrmqwyy1mxa")))) (build-system pyproject-build-system) (arguments ;; Too many of the tests in the files below require online data. @@ -2049,7 +2049,9 @@ to create databases that are optimized for rendering/tile/map-services.") " and not test_zoom_xarray" " and not test_parse_wpc_surface_bulletin" " and not test_add_timestamp_xarray" - " and not test_parse_wpc_surface_bulletin_highres")) + " and not test_parse_wpc_surface_bulletin_highres" + " and not test_find_peaks" + " and not test_find_peaks_minima")) #:phases '(modify-phases %standard-phases (add-after 'unpack 'fix-version-check |