summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-16 23:20:34 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:23:24 +0000
commit5643b69d52998027519d0c87331c9bd6c20825bf (patch)
tree8e5344eb15490d0711b4a2041487a6730a83cbf9 /gnu/packages/python-xyz.scm
parent1ca174507e260ca27e534191947e7642d321e136 (diff)
gnu: python-watchdog: Update to 6.0.0.
* gnu/packages/python-xyz.scm (python-watchdog): Update to 6.0.0. [arguments]<test-flags>: Disable one more test. Change-Id: I06b31b3d659739d5b5e9a6573597da3b57ea3919
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 10 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 08beffb56e..9c53e32431 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31531,16 +31531,23 @@ files. These files are used to translate strings in android apps.")
(define-public python-watchdog
(package
(name "python-watchdog")
- (version "2.1.6")
+ (version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "watchdog" version))
(sha256
- (base32 "1rx2nyl0cyj0v4ja795cl3gi26577c5wg48syr3byz3ndkgpavm3"))))
+ (base32 "10n2v2iflhdriwfp34yvhfcckqb6vs7378fdvqj8xbm3zn17rpwx"))))
(build-system pyproject-build-system)
(arguments
- (list #:test-flags #~(list "-k" "not test_kill_auto_restart")))
+ (list
+ #:test-flags
+ #~(list "-k" (string-join
+ (list "not test_kill_auto_restart"
+ "test_auto_restart_on_file_change_debounce"
+ ;; Fails with too many open files.
+ "test_select_fd")
+ " and not "))))
(propagated-inputs
(list python-pathtools python-pyyaml))
(native-inputs