Skip to content

Commit d02eaad

Browse files
committed
Add Python 3.5 to CI builds
1 parent d363ae9 commit d02eaad

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
language: python
2+
python:
3+
- "3.5"
24
sudo: false
35
env:
46
- TOXENV=flake8
57
- TOXENV=py26-crypto
68
- TOXENV=py27-crypto
79
- TOXENV=py33-crypto
810
- TOXENV=py34-crypto
11+
- TOXENV=py35-crypto
912
- TOXENV=py34-nocrypto
13+
- TOXENV=py35-nocrypto
1014
- TOXENV=py27-nocrypto
11-
- TOXENV=py34-contrib_crypto
15+
- TOXENV=py35-contrib_crypto
1216
- TOXENV=py27-contrib_crypto
1317
install:
1418
- pip install -U pip

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ environment:
33
- PYTHON: "C:\\Python27-x64"
44
TOX_ENV: "py27-crypto"
55

6-
- PYTHON: "C:\\Python34-x64"
7-
TOX_ENV: "py34-crypto"
6+
- PYTHON: "C:\\Python35-x64"
7+
TOX_ENV: "py35-crypto"
88

99
init:
1010
- SET PATH=%PYTHON%;%PATH%
@@ -32,4 +32,4 @@ artifacts:
3232
- path: dist\*
3333

3434
#on_success:
35-
# - TODO: upload the content of dist/*.whl to a public wheelhouse
35+
# - TODO: upload the content of dist/*.whl to a public wheelhouse

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def get_version(package):
6161
'Programming Language :: Python :: 2.7',
6262
'Programming Language :: Python :: 3.3',
6363
'Programming Language :: Python :: 3.4',
64+
'Programming Language :: Python :: 3.5',
6465
'Topic :: Utilities',
6566
],
6667
test_suite='tests',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{26,27,33,34}-crypto, py{27,34}-contrib_crypto, py{27,34}-nocrypto, flake8
2+
envlist = py{26,27,33,34,35}-crypto, py{27,35}-contrib_crypto, py{27,35}-nocrypto, flake8
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)