From 2a52a5e28710b89361a5a98b6c112879ab286d67 Mon Sep 17 00:00:00 2001 From: Stephen Roller Date: Tue, 8 Sep 2020 13:39:24 -0400 Subject: [PATCH] Version 0.9.1. (#3056) * Version 0.9.1. * Black. --- parlai/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/parlai/__init__.py b/parlai/__init__.py index 74f9fe1d725..9b0ce1f19ed 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__ = '0.9.0' +__version__ = '0.9.1' diff --git a/setup.py b/setup.py index d6225a9dadb..da60bd0c020 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages -VERSION = '0.9.0' # if you update, update parlai/__init__.py too! +VERSION = '0.9.1' # if you update, update parlai/__init__.py too! if sys.version_info < (3, 6): sys.exit('Sorry, Python >=3.6 is required for ParlAI.') @@ -35,7 +35,7 @@ url='http://parl.ai/', python_requires='>=3.6', packages=find_packages( - exclude=('data', 'docs', 'examples', 'tests', 'parlai_internal*',) + exclude=('data', 'docs', 'examples', 'tests', 'parlai_internal*') ), install_requires=reqs, include_package_data=True,