From 265e74dd31329add18de41679b84675dfccabafc Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Tue, 11 May 2021 16:14:47 +0200 Subject: [PATCH] Require prototorch>=0.4.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bb44c5c..ed83058 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ DOWNLOAD_URL = "https://github.com/si-cim/prototorch_models.git" with open("README.md", "r") as fh: long_description = fh.read() -INSTALL_REQUIRES = ["prototorch>=0.4.1", "pytorch_lightning", "torchmetrics"] +INSTALL_REQUIRES = ["prototorch>=0.4.2", "pytorch_lightning", "torchmetrics"] DEV = ["bumpversion"] EXAMPLES = ["matplotlib", "scikit-learn"] TESTS = ["codecov", "pytest"]