Skip to content

Commit

Permalink
Add Python 3.6 (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and menegazzo committed Feb 22, 2018
1 parent 940285b commit 54b6974
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -29,6 +29,7 @@ def run_tests(self):
name='TravisPy',
version='0.3.5',
packages=['travispy', 'travispy.entities'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=['requests'],

# metadata for upload to PyPI
Expand All @@ -44,9 +45,13 @@ def run_tests(self):
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],

Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py{27,34,35,py}
c[tox]
envlist = py{27,34,35,36,py}

[testenv]
passenv = TRAVISPY_TEST_SETTINGS
Expand Down

0 comments on commit 54b6974

Please sign in to comment.