Skip to content

Commit

Permalink
bumpversion
Browse files Browse the repository at this point in the history
  • Loading branch information
Perevalov committed Jun 12, 2021
1 parent 0e5cdee commit b7338d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions linguaf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

SUPPORTED_LANGS = ['en', 'ru']
__version__ = '0.0.8'
__version__ = '0.1.0'


def __load_json(filepath):
Expand Down Expand Up @@ -40,4 +40,4 @@ def __check_lang_param(param):
if type(param) != str:
raise TypeError(f"The lang parameter has to be of type str. Now: {type(param)}")
if param not in SUPPORTED_LANGS:
raise ValueError(f"The given language isn't supported. The supported ones are: {SUPPORTED_LANGS}")
raise ValueError(f"The given language isn't supported. The supported ones are: {SUPPORTED_LANGS}")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def read_requirements():

setuptools.setup(
name="linguaf",
version="0.0.8",
version="0.1.0",
author="Aleksandr Perevalov",
author_email="[email protected]",
description="Python package for calculating famous measures in computational linguistics",
Expand Down

0 comments on commit b7338d2

Please sign in to comment.