Skip to content

Commit fabc33a

Browse files
thefourtheyeMyles Borins
authored andcommitted
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 <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
1 parent 4392b4a commit fabc33a

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

‎tools/install.py‎

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
#!/usr/bin/env python
22

33
importerrno
4-
5-
try:
6-
importjson
7-
exceptImportError:
8-
importsimplejsonasjson
9-
4+
importjson
105
importos
116
importre
127
importshutil

0 commit comments

Comments
 (0)