From 054a0fff8183e357727dc7a91682496734badb7f Mon Sep 17 00:00:00 2001 From: Kurt Shuster Date: Wed, 30 Mar 2022 15:25:36 -0400 Subject: [PATCH] bump version (#4466) --- parlai/__init__.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/parlai/__init__.py b/parlai/__init__.py index 9e49a0035bd..db7b697f2eb 100644 --- a/parlai/__init__.py +++ b/parlai/__init__.py @@ -4,4 +4,4 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -__version__ = '1.5.1' +__version__ = '1.6.0' diff --git a/setup.py b/setup.py index 63577a99056..0d88b17edaa 100644 --- a/setup.py +++ b/setup.py @@ -9,10 +9,10 @@ from setuptools import setup, find_packages -VERSION = '1.5.1' # if you update, update parlai/__init__.py too! +VERSION = '1.6.0' # if you update, update parlai/__init__.py too! -if sys.version_info < (3, 7): - sys.exit('Sorry, Python >=3.7 is required for ParlAI.') +if sys.version_info < (3, 8): + sys.exit('Sorry, Python >=3.8 is required for ParlAI.') with open('README.md', encoding="utf8") as f: # strip the header and badges etc