Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Tie off release version 0.8.0 (#2879)
Browse files Browse the repository at this point in the history
* Tie off release version 0.6.0

* Bump to 0.8.0.

* Lint.
  • Loading branch information
stephenroller committed Aug 4, 2020
1 parent becb980 commit c260959
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions parlai/__init__.py
Expand Up @@ -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'
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -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.')
Expand All @@ -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',
Expand Down

0 comments on commit c260959

Please sign in to comment.