This is an automated email from the ASF dual-hosted git repository.

baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/main by this push:
     new 9090d409b7 [MINOR] Update library versions for scuro
9090d409b7 is described below

commit 9090d409b7050dea274330e200d91ab59678b364
Author: Christina Dionysio <[email protected]>
AuthorDate: Fri Feb 7 17:58:22 2025 +0100

    [MINOR] Update library versions for scuro
    
    This commit update the Python Libraries, to allow slightly older versions of
    pytorch and torch vision, while removing nltk as a dependency.
    
    Closes #2224
---
 src/main/python/systemds/__init__.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/python/systemds/__init__.py 
b/src/main/python/systemds/__init__.py
index a618ff6e9d..443b5d23d9 100644
--- a/src/main/python/systemds/__init__.py
+++ b/src/main/python/systemds/__init__.py
@@ -26,14 +26,13 @@ from systemds import examples
 __all__ = ["context", "operator", "examples"]
 
 required_packages = [
-    ("torch", "2.5.1"),
-    ("torchvision", "0.20.1"),
+    ("torch", "2.4.1"),
+    ("torchvision", "0.19.1"),
     ("librosa", "0.10.2"),
     ("opencv-python", "4.10.0.84"),
     ("opt-einsum", "3.3.0"),
     ("h5py", "3.11.0"),
     ("transformers", "4.46.3"),
-    ("nltk", "3.9.1"),
     ("gensim", "4.3.3"),
 ]
 

Reply via email to