From e8d39cbe713f1218c0c7efee51de5ad0d0569d13 Mon Sep 17 00:00:00 2001 From: F-G Fernandez Date: Sat, 10 Apr 2021 01:18:31 +0200 Subject: [PATCH] chore: Updated requirements and version (#61) * chore: Updated requirements * chore: Updated version --- .conda/meta.yaml | 2 +- requirements.txt | 4 ++-- setup.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index 96866137..a6290d0a 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -19,7 +19,7 @@ requirements: - python>=3.6 run: - - pytorch >=1.1.0 + - pytorch >=1.5.1 - numpy - pillow - matplotlib diff --git a/requirements.txt b/requirements.txt index 53c431cf..771b44a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -torch>=1.1.0 +torch>=1.5.1 numpy>=1.14.0 -pillow>=5.0.0 +pillow>=7.0.0 matplotlib>=3.0.0 diff --git a/setup.py b/setup.py index d515b823..b60d2f3a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ from setuptools import find_packages, setup -version = '0.1.3a0' +version = '0.2.0a0' sha = 'Unknown' package_name = 'torchcam' @@ -40,9 +40,9 @@ def write_version_file(): readme = f.read() requirements = [ - 'torch>=1.1.0', + 'torch>=1.5.1', 'numpy>=1.14.0', - 'pillow>=5.0.0', + 'pillow>=7.0.0', 'matplotlib>=3.0.0' ]