apteryx pushed a commit to branch master
in repository guix.

commit 9b2c1ff7f9be5db1cd8c99e60d99442a8586ad64
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Apr 11 08:44:57 2023 -0400

    gnu: python-pytest-subtests: Update to 0.10.0.
    
    * gnu/packages/python-check.scm (python-pytest-subtests): Update to 0.10.0.
    [native-inputs]: Replace python-pytest with python-pytest-7.1.
---
 gnu/packages/python-check.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 41a6997190..1046602800 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2,7 +2,7 @@
 ;;; Copyright © 2019, 2021, 2022 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2019, 2020, 2021 Efraim Flashner <[email protected]>
-;;; Copyright © 2019, 2020, 2021, 2022 Maxim Cournoyer 
<[email protected]>
+;;; Copyright © 2019, 2020, 2021, 2022, 2023 Maxim Cournoyer 
<[email protected]>
 ;;; Copyright © 2019, 2021 Hartmut Goebel <[email protected]>
 ;;; Copyright © 2020, 2022 Julien Lepiller <[email protected]>
 ;;; Copyright © 2020, 2022 Marius Bakke <[email protected]>
@@ -941,13 +941,13 @@ in Pytest.")
 (define-public python-pytest-subtests
   (package
     (name "python-pytest-subtests")
-    (version "0.5.0")
+    (version "0.10.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pytest-subtests" version))
        (sha256
-        (base32 "087i03nmkmfnrpc7mmizvr40ijnjw4lfxc22rnk8jk6s1szy9lav"))))
+        (base32 "05zvnxx0hdrd9w4z51qhchg3nkz5s47agryw68g8q7krq5kim5nr"))))
     (build-system python-build-system)
     (arguments
      `(#:phases
@@ -957,8 +957,7 @@ in Pytest.")
              (when tests?
                (add-installed-pythonpath inputs outputs)
                (invoke "python" "-m" "pytest")))))))
-    (native-inputs
-     (list python-pytest python-setuptools-scm))
+    (native-inputs (list python-pytest-7.1 python-setuptools-scm))
     (home-page "https://github.com/pytest-dev/pytest-subtests";)
     (synopsis "Unittest subTest() support and subtests fixture")
     (description "This Pytest plugin provides unittest @code{subTest()}

Reply via email to