8000 Support Python 3.6 · nirum-lang/nirum-python@c9860c3 · GitHub
[go: up one dir, main page]

Skip to content

Commit c9860c3

Browse files
committed
Support Python 3.6
1 parent 9a5115a commit c9860c3

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
language: python
2-
python:
3-
- 2.7
4-
- 3.4
5-
- 3.5
2+
python: [2.7, 3.4, 3.5, 3.6]
63
install: pip install tox-travis
74
script:
85
- tox

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Version 0.5.1
66

77
To be released.
88

9+
- Added Python 3.6 support.
910
- Wheel distributions (``nirum-*.whl``) are now universal between Python 2
1011
and 3. [`#78`_]
1112
- ``nirum.rpc.Client`` and its subtype became to raise ``TypeError`` with

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ def get_version():
100100
'Programming Language :: Python :: 2.7',
101101
'Programming Language :: Python :: 3.4',
102102
'Programming Language :: Python :: 3.5',
103+
'Programming Language :: Python :: 3.6',
103104
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
104105
'Topic :: Software Development :: Code Generators',
105106
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py27,py34,py35}-{typing351,typing352},docs
2+
envlist = {py27,py34,py35,py36}-{typing351,typing352},docs
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)
0