diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-09-07 10:48:29 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-07 21:13:52 +0100 |
| commit | 45f20b35a0bf49e4a6bfe42561089ba621bdb6db (patch) | |
| tree | f8ac4d708e04759a813eb7f298a44b24a70cd767 | |
| parent | 7b25b2332d1f620097165c7a9e1297cb85f91b95 (diff) | |
gnu: python-visdom: Update to 0.2.4.
* gnu/packages/machine-learning.scm (python-visdom): Update to 0.2.4.
[build-system]: Switch to pyproject-build-system.
[arguments]: Disable tests.
[propagated-inputs]: Remove python-pyzmq and python-torchfile; add
python-networkx.
[native-inputs]: Add python-setuptools-next.
Change-Id: I29123904158ac95018e2e0a4897e693d8fab973b
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/machine-learning.scm | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 07fcde14abd..9c962e2ffe8 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -6326,23 +6326,25 @@ algorithm for dense (LAPJV) or sparse (LAPMOD) matrices.") (define-public python-visdom (package (name "python-visdom") - (version "0.1.8.9") - (source (origin - (method url-fetch) - (uri (pypi-uri "visdom" version)) - (sha256 - (base32 - "09kiczx2i5asqsv214fz7sx8wlyldgbqvxwrd0alhjn24cvx4fn7")))) - (build-system python-build-system) + (version "0.2.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "visdom" version)) + (sha256 + (base32 "0x05faxh45bh1zz8afjhzjy49jrqv4dkhaw1ainhajl1r39i3ac4")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;tests require launching the server + (native-inputs + (list python-setuptools-next)) (propagated-inputs (list python-jsonpatch + python-networkx python-numpy python-pillow - python-pyzmq python-requests python-scipy python-six - python-torchfile python-tornado python-websocket-client)) (home-page "https://github.com/fossasia/visdom") |
