From 6980466f889e0842c5df5858b9979885d4de1b7d Mon Sep 17 00:00:00 2001 From: Mahua Singh <35654846+S-Mahua@users.noreply.github.com> Date: Tue, 20 Feb 2024 20:23:08 +0530 Subject: [PATCH] removed mpi4py dependency (#63) Co-authored-by: Mahua Singh --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8e41548..4683545 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,5 @@ classifiers=["Development Status :: 2 - Pre-Alpha"], keywords="deep learning, distributed computing, parallel computing", packages=find_packages(), - install_requires=["torch", "mpi4py"], + install_requires=["torch"], )