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

Commit

Permalink
bump version (#4466)
Browse files Browse the repository at this point in the history
  • Loading branch information
klshuster committed Mar 30, 2022
1 parent b1c73c5 commit 054a0ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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__ = '1.5.1'
__version__ = '1.6.0'
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -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
Expand Down

0 comments on commit 054a0ff

Please sign in to comment.