Skip to content

Commit

Permalink
Merge pull request #262 from purificant/add_py36_env
Browse files Browse the repository at this point in the history
enable testing with python 3.6
  • Loading branch information
jpadilla authored May 16, 2017
2 parents 5e8ece1 + b737646 commit 42ff8d4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
language: python
python:
- "3.5"
- "3.6"
addons:
apt:
sources:
- deadsnakes
packages:
- python3.5 python3.5-dev
sudo: false
env:
- TOXENV=flake8
Expand All @@ -9,10 +15,13 @@ env:
- TOXENV=py33-crypto
- TOXENV=py34-crypto
- TOXENV=py35-crypto
- TOXENV=py36-crypto
- TOXENV=py34-nocrypto
- TOXENV=py35-nocrypto
- TOXENV=py36-nocrypto
- TOXENV=py27-nocrypto
- TOXENV=py35-contrib_crypto
- TOXENV=py36-contrib_crypto
- TOXENV=py27-contrib_crypto
install:
- pip install -U pip
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def get_version(package):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
test_suite='tests',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{26,27,33,34,35}-crypto, py{27,35}-contrib_crypto, py{27,35}-nocrypto, flake8
envlist = py{26,27,33,34,35,36}-crypto, py{27,35,36}-contrib_crypto, py{27,35,36}-nocrypto, flake8

[testenv]
commands =
Expand Down

0 comments on commit 42ff8d4

Please sign in to comment.