From c2609595d46990f26f60ba292a2a21b588058186 Mon Sep 17 00:00:00 2001 From: Stephen Roller Date: Mon, 3 Aug 2020 23:46:38 -0400 Subject: [PATCH] Tie off release version 0.8.0 (#2879) * Tie off release version 0.6.0 * Bump to 0.8.0. * Lint. --- 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 240697e3247..e47601d7626 100644 --- a/parlai/__init__.py +++ b/parlai/__init__.py @@ -3,3 +3,5 @@ # Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. + +__version__ = '0.8.0' diff --git a/setup.py b/setup.py index 3817f2c8e41..435e2a0d0ba 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,11 @@ # LICENSE file in the root directory of this source tree. -import datetime import sys from setuptools import setup, find_packages -BUILD = '' # test by setting to ".dev0" if multiple in one day, use ".dev1", ... -DATE = datetime.date.today().isoformat().replace('-', '') +VERSION = '0.8.0' # if you update, update parlai/__init__.py too! if sys.version_info < (3, 6): sys.exit('Sorry, Python >=3.6 is required for ParlAI.') @@ -30,7 +28,7 @@ if __name__ == '__main__': setup( name='parlai', - version='0.1.{DATE}{BUILD}'.format(DATE=DATE, BUILD=BUILD), + version=VERSION, description='Unified platform for dialogue research.', long_description=readme, long_description_content_type='text/markdown',