Skip to content
This repository has been archived by the owner on Jun 10, 2021. It is now read-only.

Test Python 3.6 on Travis #102

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: python

python:
- "2.7"
- "3.6"

install:
- "pip install ."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ It's one of those tools where, the more you use it, the more you think of places
Dependencies
------------

* python2
* Python 2.7 or Python 3.6+

Credits
-------
Expand Down
3 changes: 3 additions & 0 deletions codemod/terminal_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
import termios
import struct

if sys.version_info[0] >= 3:
unicode = str


def terminal_get_size(default_size=(25, 80)):
"""
Expand Down