[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/57: gnu: python-pygments: Update to 2.15.1.
From: |
guix-commits |
Subject: |
01/57: gnu: python-pygments: Update to 2.15.1. |
Date: |
Mon, 6 May 2024 04:08:04 -0400 (EDT) |
rekado pushed a commit to branch python-team
in repository guix.
commit 33ea5b0e5768029cc1ce5b1cb860745836082ade
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 981d915db5..61e1a50a96 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6910,18 +6910,23 @@ text styles of documentation.")
(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 df580a54f4), guix-commits, 2024/05/06
- 02/57: gnu: python-imagesize: Update to 1.4.1., guix-commits, 2024/05/06
- 05/57: build-system/pyproject: Use python-sans-pip-wrapper as default-python., guix-commits, 2024/05/06
- 01/57: gnu: python-pygments: Update to 2.15.1.,
guix-commits <=
- 03/57: gnu: python-sphinx-alabaster-theme: Update to 0.7.13., guix-commits, 2024/05/06
- 06/57: build-system/python: Ignore symlinks when changing mtime., guix-commits, 2024/05/06
- 12/57: guix: pyproject-build-system: Default configure-flags to empty dictionary., guix-commits, 2024/05/06
- 07/57: gnu: criu: Remove temporary workaround., guix-commits, 2024/05/06
- 13/57: doc: Document new options for pyproject-build-system., guix-commits, 2024/05/06
- 18/57: gnu: python-typing-extensions: Update to 4.10.0., guix-commits, 2024/05/06
- 20/57: gnu: meson-python: Do not delete LICENSES directory., guix-commits, 2024/05/06
- 27/57: gnu: python-lightning-cloud: Disable tests., guix-commits, 2024/05/06
- 23/57: gnu: python-rich: Update to 13.7.0., guix-commits, 2024/05/06
- 21/57: gnu: python-markdown-it-py: Update to 3.0.0., guix-commits, 2024/05/06