From 8f6bf1ec8af39a684e2e3b816687a493a3178af4 Mon Sep 17 00:00:00 2001 From: Shiori Sagawa Date: Mon, 19 Jul 2021 00:00:59 -0700 Subject: [PATCH 1/2] version 1.2.0 --- README.md | 2 +- wilds/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 40e0437b..1bd06df1 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ git clone git@github.com:p-lambda/wilds.git To run these scripts, you will need to install these additional dependencies: -- torchvision>=0.8.1 +- torchvision>=0.8.2 - transformers>=3.5.0 All baseline experiments in the paper were run on Python 3.8.5 and CUDA 10.1. diff --git a/wilds/version.py b/wilds/version.py index 6d19cfa3..0d065bf6 100644 --- a/wilds/version.py +++ b/wilds/version.py @@ -4,7 +4,7 @@ import logging from threading import Thread -__version__ = '1.1.0' +__version__ = '1.2.1' try: os.environ['OUTDATED_IGNORE'] = '1' From 54d7cc1ba013d9c850621797fbcc473c4c48a710 Mon Sep 17 00:00:00 2001 From: Shiori Sagawa Date: Mon, 19 Jul 2021 00:01:20 -0700 Subject: [PATCH 2/2] version 1.2.1; remove torchvision requirement --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 1fb6a2e5..9cd1f596 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,6 @@ 'tqdm>=4.53.0', 'outdated>=0.2.0', 'pytz>=2020.4', - 'torchvision==0.8.2' ], license='MIT', packages=setuptools.find_packages(exclude=['dataset_preprocessing', 'examples', 'examples.models', 'examples.models.bert']),