diff --git a/Pipfile b/Pipfile index 6d7d44a..fba95e3 100644 --- a/Pipfile +++ b/Pipfile @@ -14,11 +14,10 @@ requests = "==2.13.0" [dev-packages] -future = "*" coveralls = "*" "pytest-watch" = "*" "pytest-testmon" = "*" [requires] -python_version = "3.6" \ No newline at end of file +python_version = "3.7" \ No newline at end of file diff --git a/googletrans/__init__.py b/googletrans/__init__.py index 141ce83..5086260 100644 --- a/googletrans/__init__.py +++ b/googletrans/__init__.py @@ -1,6 +1,6 @@ """Free Google Translate API for Python. Translates totally free of charge.""" __all__ = 'Translator', -__version__ = '2.3.0' +__version__ = '2.4.0' from googletrans.client import Translator diff --git a/setup.py b/setup.py index d9cddec..ab89b75 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,8 @@ def install(): 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6'], + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7'], packages=find_packages(exclude=['docs', 'tests']), keywords='google translate translator', install_requires=[