[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/223: gnu: python-pygments: Update to 2.15.1.
From: |
guix-commits |
Subject: |
01/223: gnu: python-pygments: Update to 2.15.1. |
Date: |
Thu, 17 Oct 2024 06:20:29 -0400 (EDT) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 9e93cd88dff22c3f7bb3f1d65825361e0b657493
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Jul 6 23:18:47 2023 +0200
gnu: python-pygments: Update to 2.15.1.
* gnu/packages/python-xyz.scm (python-pygments): Update to 2.15.1.
[build-system]: Use pyproject-build-system.
[arguments]: Run tests.
[native-inputs]: Add python-pytest.
---
gnu/packages/python-xyz.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8c7e1596e6..371e6ac41f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7169,18 +7169,23 @@ with Python.")
(define-public python-pygments
(package
(name "python-pygments")
- (version "2.12.0")
+ (version "2.15.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "Pygments" version))
(sha256
(base32
- "1sr6iqh21xi6p8aba4wa9pqfhjbbpcvn9jcsx0ggy4lniw8idcay"))))
- (build-system python-build-system)
+ "0p3p28fif7m2w5mkd0z99zk9xwgrs3m61x85415qk0fl3ly4vkla"))))
+ (build-system pyproject-build-system)
(arguments
- ;; FIXME: Tests require sphinx, which depends on this.
- '(#:tests? #f))
+ (list
+ #:test-flags
+ ;; Some tests require sphinx, which depends on this, so we only run
+ ;; basic tests.
+ '(list "--ignore-glob=tests/*/*")))
+ (native-inputs
+ (list python-pytest))
(home-page "https://pygments.org/")
(synopsis "Syntax highlighting")
(description
- branch python-team created (now 1fb65c29ea), guix-commits, 2024/10/17
- 01/223: gnu: python-pygments: Update to 2.15.1.,
guix-commits <=
- 03/223: gnu: python-sphinx-alabaster-theme: Update to 0.7.13., guix-commits, 2024/10/17
- 04/223: gnu: python-sphinx: Update to 5.3.0., guix-commits, 2024/10/17
- 13/223: doc: Document new options for pyproject-build-system., guix-commits, 2024/10/17
- 11/223: gnu: python-pytest-xdist: Disable failing test., guix-commits, 2024/10/17
- 10/223: build-system/pyproject: Use TOML parser., guix-commits, 2024/10/17
- 07/223: gnu: criu: Remove temporary workaround., guix-commits, 2024/10/17
- 16/223: gnu: Add missing import (again)., guix-commits, 2024/10/17
- 24/223: gnu: python-jupytext: Update to 1.15.0., guix-commits, 2024/10/17
- 12/223: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/10/17
- 27/223: gnu: python-lightning-cloud: Disable tests., guix-commits, 2024/10/17