Skip to content

Commit 0ae1d22

Browse files
committed
require Python 3.5
1 parent 46a6f44 commit 0ae1d22

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ sudo: false
22

33
language: python
44
python:
5-
- "2.7"
6-
- "3.4"
5+
- "3.5"
76

87
before_install:
98
- pip install -r requirements.txt

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from distutils.core import setup
22
import sys
33

4-
if sys.version_info < (2, 7):
5-
print("Python 2.7 or higher required, please upgrade.")
4+
if sys.version_info < (3, 5):
5+
print("Python 3.5 or higher required, please upgrade.")
66
sys.exit(1)
77

88

0 commit comments

Comments
 (0)