Skip to content

Commit

Permalink
Merge #426 (add support for Python 3.7).
Browse files Browse the repository at this point in the history
  • Loading branch information
martey committed Jul 24, 2018
2 parents 46e28b8 + 35a7422 commit 3348fb9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3348fb9

Please sign in to comment.