Skip to content

Commit 5d28b85

Browse files
committed
remove Python 2.5
1 parent 708c36f commit 5d28b85

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,5 @@ python:
55
- "3.2"
66
- "2.7"
77
- "2.6"
8-
- "2.5"
98
- "pypy"
10-
install:
11-
- if [ "`python -c 'import sys; print(sys.version_info[0:2])'`" = "(2, 5)" ]; then pip install -r requirements.txt --use-mirrors; fi
129
script: make test

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55

66
PROJ_METADATA = '%s.json' % PROJ_NAME
77

8-
import os, imp
9-
try:
10-
import json
11-
except ImportError:
12-
import simplejson as json
8+
import os, json, imp
139

1410
here = os.path.abspath(os.path.dirname(__file__))
1511
proj_info = json.loads(open(os.path.join(here, PROJ_METADATA)).read())

0 commit comments

Comments
 (0)