Skip to content

Commit

Permalink
Compat
Browse files Browse the repository at this point in the history
  • Loading branch information
montyvesselinov committed Oct 26, 2019
1 parent d2b0ddf commit a61e75b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name = "RobustPmap"
uuid = "27aeedcb-f738-516b-a0b8-3211cf1146e5"
version = "0.5.0"
version = "0.6.0"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"

[compat]
Compat = "≥ 0.7.15"
julia = "≥ 1.1.0"
FileIO = "^1"
JLD2 = "^0"
julia = "^1"

[extras]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand Down
3 changes: 1 addition & 2 deletions src/RobustPmap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ LA-CC-15-080; Copyright Number Assigned: C16008
module RobustPmap

import Distributed
import Compat.String

import JLD2
import FileIO
Expand All @@ -57,7 +56,7 @@ function rpmap(f::Function, args...; t::Type=Any)
end

"Robust pmap call with checkpoints"
function crpmap(f::Function, checkpointfrequency::Int, filerootname::String, args...; t::Type=Any)
function crpmap(f::Function, checkpointfrequency::Int, filerootname::AbstractString, args...; t::Type=Any)
fullresult = t[]
hashargs = hash(args)
if checkpointfrequency <= 0
Expand Down

0 comments on commit a61e75b

Please sign in to comment.