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

Commit

Permalink
Bump to v0.10.0 (#3307)
Browse files Browse the repository at this point in the history
* [release] Bump to v0.10.0.
  • Loading branch information
stephenroller committed Dec 16, 2020
1 parent a2adbe1 commit e4f3127
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion parlai/__init__.py
Expand Up @@ -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.4'
__version__ = '0.10.0'
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -9,10 +9,10 @@

from setuptools import setup, find_packages

VERSION = '0.9.4' # if you update, update parlai/__init__.py too!
VERSION = '0.10.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.')
if sys.version_info < (3, 7):
sys.exit('Sorry, Python >=3.7 is required for ParlAI.')

with open('README.md', encoding="utf8") as f:
# strip the header and badges etc
Expand All @@ -33,7 +33,7 @@
long_description=readme,
long_description_content_type='text/markdown',
url='http://parl.ai/',
python_requires='>=3.6',
python_requires='>=3.7',
packages=find_packages(
exclude=('data', 'docs', 'examples', 'tests', 'parlai_internal*')
),
Expand Down

0 comments on commit e4f3127

Please sign in to comment.