summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Deldycke <kevin@deldycke.com>2026-07-28 16:11:57 +0400
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-07 01:01:36 +0100
commit1e969ec3a0b12a2d7250cc2560c1f60125344751 (patch)
treeaf09c7ca646e5a21e4e343c1109fb06513e56717
parentb477ff52374bd218335b71398542f0b82b01ebf9 (diff)
gnu: python-extra-platforms: Update to 13.6.0.
* gnu/packages/python-xyz.scm (python-extra-platforms): Update to 13.6.0. [arguments]<#:test-flags>: Drop the Sphinx cross-reference test ignore, which self-skips without uv since 13.4.0. [native-inputs]: Remove python-requests, only imported by the network test that is deselected here. Relates-to: guix/guix!10245 Reviewed-by: Hugo Buddelmeijer <hugo@buddelmeijer.nl> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 38a3668eb3d..9156747c939 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1542,7 +1542,7 @@ or random, matching strings to a given regular expression.")
1542(define-public python-extra-platforms 1542(define-public python-extra-platforms
1543 (package 1543 (package
1544 (name "python-extra-platforms") 1544 (name "python-extra-platforms")
1545 (version "13.0.1") 1545 (version "13.6.0")
1546 (source 1546 (source
1547 (origin 1547 (origin
1548 (method git-fetch) 1548 (method git-fetch)
@@ -1551,17 +1551,15 @@ or random, matching strings to a given regular expression.")
1551 (commit (string-append "v" version)))) 1551 (commit (string-append "v" version))))
1552 (file-name (git-file-name name version)) 1552 (file-name (git-file-name name version))
1553 (sha256 1553 (sha256
1554 (base32 "0mqyz6m1sdy6y7iz9yf63hljpbjvzcw16vda394b0w2pb41s5sv1")))) 1554 (base32 "0h9bg8dn5zzcm0nnn5wvnc7yrwlglg5yvbxfzwkg4vm123l72zsa"))))
1555 (build-system pyproject-build-system) 1555 (build-system pyproject-build-system)
1556 (arguments 1556 (arguments
1557 (list 1557 (list
1558 #:build-backend "setuptools.build_meta" 1558 #:build-backend "setuptools.build_meta"
1559 ;; Skip network tests and one that shells out to ``uv``. 1559 ;; Skip the network tests.
1560 #:test-flags #~(list "-m" "not network" 1560 #:test-flags #~(list "-m" "not network")))
1561 "--ignore=tests/test_sphinx_crossrefs.py")))
1562 (native-inputs 1561 (native-inputs
1563 (list python-pytest 1562 (list python-pytest
1564 python-requests
1565 python-setuptools)) 1563 python-setuptools))
1566 (home-page "https://kdeldycke.github.io/extra-platforms/") 1564 (home-page "https://kdeldycke.github.io/extra-platforms/")
1567 (synopsis "Detection of architectures, platforms, and OS families") 1565 (synopsis "Detection of architectures, platforms, and OS families")