diff --git a/.circleci/config.yml b/.circleci/config.yml index b1b19933..e1c324c7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,7 @@ workflows: - test-python-3.4 - test-python-3.5 - test-python-3.6 + - test-python-3.7 jobs: test-python-2.7: &test-python-template docker: @@ -54,3 +55,7 @@ jobs: <<: *test-python-template docker: - image: circleci/python:3.6-browsers + test-python-3.7: + <<: *test-python-template + docker: + - image: circleci/python:3.7-browsers diff --git a/docs/changes.rst b/docs/changes.rst index 62fb6644..c6172630 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,7 +4,7 @@ Changelog Version 3.0.0 (unreleased) ========================== - - Add support for Python 3.6. + - Add support for Python 3.6 and 3.7. - Remove support for Python 2.6 and 3.3. - Add support for Graph API versions 2.8, 2.9, 2.10, 2.11, 2.12, and 3.0. - Remove support for Graph API versions 2.1, 2.2, 2.3, 2.4, 2.5, and 2.6. diff --git a/docs/install.rst b/docs/install.rst index 69b9a1f9..88bb4541 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -2,7 +2,7 @@ Installation ============ -The SDK currently supports Python 2.7, 3.4, 3.5, and 3.6. The `requests`_ +The SDK currently supports Python 2.7 and Python 3.4-3.7. The `requests`_ package is required. We recommend using `pip`_ and `virtualenv`_ to install the SDK. Please note diff --git a/setup.py b/setup.py index 7f9fc5aa..cf32bd92 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,8 @@ 'Programming Language :: Python :: 3', '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', ], install_requires=[ 'requests',