Skip to content

Commit

Permalink
fixed dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Qwlouse committed Jan 10, 2017
1 parent 3f9396e commit 67ef4a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Mako==1.0.6
MarkupSafe==0.23
mock==2.0.0
mongomock==3.7.0
munch==2.0.4
numpy==1.11.3
pandas==0.19.2
pbr==1.10.0
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
docopt==0.6.2
jsonpickle==0.9.3
mock==2.0.0
munch==2.0.4
pbr==1.10.0
py==1.4.32
pytest==3.0.5
Expand Down
2 changes: 1 addition & 1 deletion sacred/arg_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from sacred.commandline_options import gather_command_line_options
from sacred.commands import help_for_command
from serializer import restore
from sacred.serializer import restore
from sacred.utils import set_by_dotted_path

__sacred__ = True # marks files that should be filtered from stack traces
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@
scripts=[],
install_requires=[
"docopt>=0.3, <1.0",
'jsonpickle>=0.7.2, <1.0',
"munch=>2.0.2, <3.0",
"wrapt>=1.0, <2.0",
'jsonpickle>=0.7.2, <1.0'
],
tests_require=[
'mock>=0.8, <3.0',
Expand Down

0 comments on commit 67ef4a5

Please sign in to comment.