Skip to content

Commit fabc33a

Browse files
thefourtheyeMyles Borins
authored and
Myles Borins
committed
tools: remove simplejson dependency
As Node.js expects either Python 2.6 or 2.7 installed to work properly, simplejson module is no longer necessary. It was included in Python 2.6 as the json module. PR-URL: #6101 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Johan Bergström <[email protected]>
1 parent 4392b4a commit fabc33a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tools/install.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
#!/usr/bin/env python
22

33
import errno
4-
5-
try:
6-
import json
7-
except ImportError:
8-
import simplejson as json
9-
4+
import json
105
import os
116
import re
127
import shutil

0 commit comments

Comments
 (0)