This is an automated email from the git hooks/post-receive script.
sharlatan pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7bc7351860 gnu: python-crosshair: Update to 0.0.86.
7bc7351860 is described below
commit 7bc735186054ed2fd7b99d9c0f6cbcfc433b3488
Author: Troy Figiel <[email protected]>
AuthorDate: Tue Apr 22 21:47:23 2025 +0200
gnu: python-crosshair: Update to 0.0.86.
* gnu/packages/check.scm (python-crosshair): Update to 0.0.86.
[source] <pypi-uri>: Adjust name as PyPI archive has been changed.
[phases]{relax-requirements}: Remove relaxation for typing-inspect.
Change-Id: Ida2887ad8dc140e174532dccc69542af26f0cffb
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/check.scm | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 3580841047..aaf2b2bf5f 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2805,13 +2805,13 @@ instantly.")
(define-public python-crosshair
(package
(name "python-crosshair")
- (version "0.0.84")
+ (version "0.0.86")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "crosshair-tool" version))
+ (uri (pypi-uri "crosshair_tool" version))
(sha256
- (base32 "1j6icn5f206yld9871p7a3v45jg8d8v4bhxh09lq3kzi09gr7maz"))))
+ (base32 "19zrv6gsap0qwn4rrs1wwajg0gkq7ys8qijsilmjrhc73dylgl72"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2828,9 +2828,6 @@ instantly.")
(substitute* "setup.py"
;; pygls is only used by crosshair/lsp_server.py.
(("pygls>=1.0.0") "")
- ;; Tests still pass with typing-inspect==0.6.0
- ;; packaged by Guix.
- (("typing-inspect>=0.7.1") "typing-inspect>=0.6.0")
;; 'sanity-check fails for z3-solver, although it is
;; included in 'propagated-inputs.
(("z3-solver>=4.13.0.0") ""))))