diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-16 21:10:33 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:19:10 +0000 |
commit | 32c04ab30ebf3953529eb19d19f625af10664635 (patch) | |
tree | c4419abdfdaccf477c3ec8feb0a2fb1220c1ee11 | |
parent | 3daf5b0dcf0456909141f0dd18c7ae5ca6ded49d (diff) | |
download | guix-32c04ab30ebf3953529eb19d19f625af10664635.tar.gz guix-32c04ab30ebf3953529eb19d19f625af10664635.zip |
gnu: python-pexpect: Update to 4.9.0.
* gnu/packages/python-xyz.scm (python-pexpect): Update to 4.9.0.
Change-Id: Ie4e9fa2a6187cba16cf8ccb7395f34fd8fb0845a
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e9a4c2e153..e70503e7a8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11826,13 +11826,13 @@ wraps Python's standard library threading and multiprocessing objects.") (define-public python-pexpect (package (name "python-pexpect") - (version "4.8.0") + (version "4.9.0") (source (origin (method url-fetch) (uri (pypi-uri "pexpect" version)) (sha256 - (base32 "032cg337h8awydgypz6f4wx848lw8dyrj4zy988x0lyib4ws8rgw")))) + (base32 "03ykxacc64ijldbpa31v5lxw93an0z0xmhm21q2i369w7w942zgf")))) (build-system pyproject-build-system) (arguments (list @@ -11851,7 +11851,9 @@ wraps Python's standard library threading and multiprocessing objects.") "test_run_uses_env_path_over_path" "test_spawn_uses_env" ;; Fails with assertion error: assert 0 == 500 - "test_before_across_chunks") + "test_before_across_chunks" + ;; Bash is enough for tests. + "test_zsh") " and not ")) #:phases #~(modify-phases %standard-phases |