Skip to content

Commit

Permalink
Bump Toil to 3.3.0 (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes-ucsc committed Jul 11, 2016
1 parent f1bc84b commit 03d68b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion toil/src/cgcloud/toil/test/test_toil.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def hello( name ):

if __name__ == '__main__':
options = Job.Runner.getDefaultArgumentParser( ).parse_args( )
job = Job.wrapFn( hello, "world", cores=1, memory=1e6, disk=1e6, cache=1e6 )
job = Job.wrapFn( hello, "world", cores=1, memory=1e6, disk=1e6 )
result = Job.Runner.startToil( job, options )
assert result == 'Hello, world!'

Expand Down
4 changes: 2 additions & 2 deletions toil/src/cgcloud/toil/toil_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class ToilBox( ToilBoxSupport ):
A box with Mesos, the latest stable Toil release and their dependencies installed.
"""

default_spec = 'toil[aws,mesos,encryption,cwl]==3.2.1'
default_spec = 'toil[aws,mesos,encryption,cwl]==3.3.0'

@classmethod
def get_role_options( cls ):
Expand Down Expand Up @@ -176,7 +176,7 @@ class ToilLatestBox( ToilBox ):
"""
A box with Mesos, the latest unstable release of Toil and their dependencies installed
"""
default_spec = 'toil[aws,mesos,encryption,cwl]<=3.3.0'
default_spec = 'toil[aws,mesos,encryption,cwl]<=3.4.0'


class ToilLeader( ToilBox, ClusterLeader ):
Expand Down

0 comments on commit 03d68b0

Please sign in to comment.