From 9c940f583610fdaffbcea2a84ae61a479ad0e649 Mon Sep 17 00:00:00 2001 From: Yi-Lun Wu Date: Sun, 11 Jul 2021 00:29:03 +0800 Subject: [PATCH] v0.3.2 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index decd162..36daa72 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(rel_path): if __name__ == '__main__': setuptools.setup( name='pytorch_gan_metrics', - version='0.3.0', + version='0.3.2', author='Yi-Lun Wu', author_email='w86763777@gmail.com', description=('Package for calculating GAN metrics using Pytorch'), @@ -35,7 +35,7 @@ def read(rel_path): install_requires=[ 'tqdm', 'scipy==1.5.4', - 'torch>=1.5.0,<=1.8.1', - 'torchvision>=0.6.0,<=0.9.1', + 'torch>=1.8.1', + 'torchvision>=0.9.1', ], )