Skip to content

Commit f7279d7

Browse files
author
Andrii Soldatenko
committed
Added python 3.6 to tox file
1 parent bdba194 commit f7279d7

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ python:
66
- '2.7'
77
- '3.4'
88
- '3.5'
9+
- '3.6'
910
install:
1011
- python setup.py install
1112
- pip install pyyaml

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ We welcome direct contributions to the sendgrid-python code base. Thank you!
6464

6565
##### Prerequisites #####
6666

67-
- Python 2.6 through 3.5
67+
- Python 2.6 through 3.6
6868
- [python_http_client](https://github.com/sendgrid/python-http-client)
6969

7070
##### Initial setup: #####

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ We appreciate your continued support, thank you!
3030

3131
## Prerequisites
3232

33-
- Python version 2.6, 2.7, 3.4 or 3.5
33+
- Python version 2.6, 2.7, 3.4, 3.5 or 3.6
3434
- The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-python)
3535

3636
## Setup Environment Variables

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def getRequires():
3636
'Programming Language :: Python :: 3.2',
3737
'Programming Language :: Python :: 3.3',
3838
'Programming Language :: Python :: 3.4',
39-
'Programming Language :: Python :: 3.5'
39+
'Programming Language :: Python :: 3.5',
40+
'Programming Language :: Python :: 3.6'
4041
]
4142
)

tox.ini

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py32, py33, py34, py35
7+
envlist = py26, py27, py32, py33, py34, py35, py36
88

99
[testenv]
1010
commands = {envbindir}/python -m unittest discover -v []
1111
deps =
12-
{py26,py27,py32,py33,py34,py35}-full: python_http_client
12+
{py26,py27,py32,py33,py34,py35,py36}-full: python_http_client
1313

1414
[testenv:py26]
1515
commands = {envbindir}/unit2 discover -v []
@@ -38,5 +38,10 @@ basepython = python3.4
3838

3939
[testenv:py35]
4040
commands = {envbindir}/python -m unittest discover -v []
41-
deps =
42-
basepython = python3.5
41+
deps = -rrequirements.txt
42+
basepython = python3.5
43+
44+
[testenv:py36]
45+
commands = {envbindir}/python -m unittest discover -v []
46+
deps = -rrequirements.txt
47+
basepython = python3.6

0 commit comments

Comments
 (0)