Skip to content

Commit 39fb952

Browse files
committed
updating versions of modules, maybe make a difference
1 parent f5c45c7 commit 39fb952

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

singularity/analysis/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import requests
3333

3434
import shutil
35-
import simplejson
3635
from singularity.logger import bot
3736
from singularity.utils import get_installdir
3837
import sys

singularity/build/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import re
3232

3333
import shutil
34-
import simplejson
3534
from singularity.logger import bot
3635

3736
from singularity.utils import (

singularity/package/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232

3333
import shutil
3434
import json
35-
import simplejson
3635
from singularity.logger import bot
3736
from singularity.utils import (
3837
write_json,

singularity/utils.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636
import shutil
3737
import json
38-
import simplejson
3938
from singularity.logger import bot
4039
from subprocess import (
4140
Popen,
@@ -136,14 +135,14 @@ def write_json(json_obj, filename, mode="w", print_pretty=True):
136135
with open(filename, mode) as filey:
137136
if print_pretty:
138137
filey.writelines(
139-
simplejson.dumps(
138+
json.dumps(
140139
json_obj,
141140
indent=4,
142141
separators=(
143142
',',
144143
': ')))
145144
else:
146-
filey.writelines(simplejson.dumps(json_obj))
145+
filey.writelines(json.dumps(json_obj))
147146
return filename
148147

149148

singularity/version.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,13 @@
3333

3434
INSTALL_REQUIRES = (
3535

36-
('demjson', {'min_version': None}),
37-
('python-dateutil', {'min_version': None}),
38-
('pandas', {'min_version': '0.19.2'}),
39-
('requests', {'min_version': '2.12.4'}),
40-
('requests-toolbelt', {'min_version': '0.8.0'}),
41-
('retrying', {'min_version': '1.3.3'}),
42-
('simplejson', {'min_version': '3.10.0'}),
36+
('demjson', {'exact_version': "2.2.4"}),
37+
('python-dateutil', {'exact_verison': "2.5.3"}),
38+
('pandas', {'exact_verison': '0.20.3'}),
39+
('requests', {'exact_version': '2.18.4'}),
40+
('requests-toolbelt', {'exact_version': '0.8.0'}),
41+
('retrying', {'exact_version': '1.3.3'}),
4342
('pygments', {'min_version': '2.1.3'}),
44-
('google-api-python-client', {'min_version': None}),
43+
('google-api-python-client', {'min_version': "1.6.4"}),
4544
('oauth2client', {'exact_version': '3.0'})
4645
)

0 commit comments

Comments
 (0)