Skip to content

Commit

Permalink
tools: remove simplejson dependency
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
thefourtheye authored and Myles Borins committed May 17, 2016
1 parent fbaa32f commit f717885
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tools/install.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
#!/usr/bin/env python

import errno

try:
import json
except ImportError:
import simplejson as json

import json
import os
import re
import shutil
Expand Down

0 comments on commit f717885

Please sign in to comment.