Skip to content

Commit 36c828c

Browse files
committed
Add python 3.6 to supported versions
1 parent 8bf7756 commit 36c828c

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ python:
33
- "2.7"
44
- "3.4"
55
- "3.5"
6+
- "3.6"
67
# PyPy versions
78
- "pypy"
89
- "pypy3"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='telegraph',
20-
version='1.1',
20+
version='1.1.1',
2121
author='python273',
2222
author_email='whoami@python273.pw',
2323
url='https://github.com/python273/telegraph',
@@ -37,6 +37,7 @@
3737
'Programming Language :: Python :: 3',
3838
'Programming Language :: Python :: 3.4',
3939
'Programming Language :: Python :: 3.5',
40+
'Programming Language :: Python :: 3.6',
4041
'Programming Language :: Python :: Implementation :: PyPy',
4142
'Programming Language :: Python :: Implementation :: CPython',
4243
]

telegraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"""
1010

1111
__author__ = 'python273'
12-
__version__ = '1.1'
12+
__version__ = '1.1.1'
1313

1414
from .api import Telegraph, TelegraphException

0 commit comments

Comments
 (0)