Skip to content

Commit 3348fb9

Browse files
committed
Merge #426 (add support for Python 3.7).
2 parents 46e28b8 + 35a7422 commit 3348fb9

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.circleci/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ workflows:
77
- test-python-3.4
88
- test-python-3.5
99
- test-python-3.6
10+
- test-python-3.7
1011
jobs:
1112
test-python-2.7: &test-python-template
1213
docker:
@@ -54,3 +55,7 @@ jobs:
5455
<<: *test-python-template
5556
docker:
5657
- image: circleci/python:3.6-browsers
58+
test-python-3.7:
59+
<<: *test-python-template
60+
docker:
61+
- image: circleci/python:3.7-browsers

docs/changes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44

55
Version 3.0.0 (unreleased)
66
==========================
7-
- Add support for Python 3.6.
7+
- Add support for Python 3.6 and 3.7.
88
- Remove support for Python 2.6 and 3.3.
99
- Add support for Graph API versions 2.8, 2.9, 2.10, 2.11, 2.12, and 3.0.
1010
- Remove support for Graph API versions 2.1, 2.2, 2.3, 2.4, 2.5, and 2.6.

docs/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Installation
33
============
44

5-
The SDK currently supports Python 2.7, 3.4, 3.5, and 3.6. The `requests`_
5+
The SDK currently supports Python 2.7 and Python 3.4-3.7. The `requests`_
66
package is required.
77

88
We recommend using `pip`_ and `virtualenv`_ to install the SDK. Please note

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
'Programming Language :: Python :: 3',
2424
'Programming Language :: Python :: 3.4',
2525
'Programming Language :: Python :: 3.5',
26-
'Programming Language :: Python :: 3.6'
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3.7',
2728
],
2829
install_requires=[
2930
'requests',

0 commit comments

Comments
 (0)