Skip to content

Commit beeb87d

Browse files
author
Andrii Soldatenko
committed
Added python 3.6 to tox file
1 parent fd52da9 commit beeb87d

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ We welcome direct contributions to the python-http-client code base. Thank you!
6464

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

67-
- Python 2.6 through 3.5
67+
- Python 2.6 through 3.6
6868
- There are no external dependencies
6969

7070
##### Initial setup: #####
@@ -142,9 +142,10 @@ Add `eval "$(pyenv init -)"` to your shell environment (.profile, .bashrc, etc)
142142
pyenv install 2.6.9
143143
pyenv install 2.7.11
144144
pyenv install 3.4.3
145-
pyenv install 3.5.0
145+
pyenv install 3.5.2
146+
pyenv install 3.6.0
146147
python setup.py install
147-
pyenv local 3.5.0 3.4.3 2.7.8 2.6.9
148+
pyenv local 3.6.0 3.5.2 3.4.3 2.7.8 2.6.9
148149
pyenv rehash
149150
```
150151

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ All updates to this project is documented in our [CHANGELOG](https://github.com/
1212

1313
## Prerequisites
1414

15-
- Python version 2.6, 2.7, 3.4 or 3.5
15+
- Python version 2.6, 2.7, 3.4, 3.5 or 3.6
1616

1717
## Install Package
1818

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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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 []
@@ -38,4 +38,9 @@ basepython = python3.4
3838
[testenv:py35]
3939
commands = {envbindir}/python -m unittest discover -v []
4040
deps =
41-
basepython = python3.5
41+
basepython = python3.5
42+
43+
[testenv:py36]
44+
commands = {envbindir}/python -m unittest discover -v []
45+
deps =
46+
basepython = python3.6

0 commit comments

Comments
 (0)