Skip to content

Commit

Permalink
Support Python 3.6 (#25)
Browse files Browse the repository at this point in the history
* Support Python 3.6

* Deploy python 3.6 package version

* Fix .travis.yml
  • Loading branch information
webyneter authored Jun 27, 2017
1 parent d38b4a3 commit 4d399eb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
22 changes: 13 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# This file was autogenerated and will overwrite each time you run travis_pypi_setup.py


language: python
python:
- 3.5
- 3.6

install: pip install -U tox-travis

script: tox -e codecov

deploy:
true:
python: 3.5
on:
repo: webyneter/python-humble-utils
tags: true
python: 2.7
user: webyneter
password:
secure: !!binary |
Expand All @@ -21,10 +32,3 @@ deploy:
c1lyTEZQV1JZV2ZiRGlzN2xCVktzTWcyUC9yOTBqOGlqN1g4RlFuak9kTHpTaFRvZktNbUJKcDA9
provider: pypi
distributions: sdist bdist_wheel
install: pip install -U tox-travis
language: python
python:
- 3.5
script: tox -e codecov
after_success:
- codecov
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=[
'python',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tox]
envlist = py35, flake8
envlist = py35, py36, flake8

[travis]
python =
3.5: py35
3.6: py36

[testenv]
setenv =
Expand Down

0 comments on commit 4d399eb

Please sign in to comment.