In general it's not recommended to use the latest nightly (version 0.4) (which is under rapid development and likely to break things quite often) right now. I would recommend switching to the latest 0.3 release (0.3.2 I believe), which if you have a git clone of the Julia repo you can get by doing `git checkout release-0.3` and then `make`. Once you've done this, I would also update your packages by doing `Pkg.update()` at the Julia REPL, as packages often have many changes to keep up with new versions.
On Tuesday, November 4, 2014 7:06:10 PM UTC-6, [email protected] wrote: > > Hi, > > I had written a utility in Julia when I was taking a first stab at > learning the Julia. After updating Julia recently, my utility stopped > working. I can't seem to diagnose what the issue might be, and so I was > seeking out others' expertise to help me identify where the problem might > reside. Aside from a number of deprecated syntax warnings related to > ArgParse, the traceback I see is: > > ERROR: `convert` has no method matching convert(::Type{Dict{Symbol,Int64 > }}, ::(Symbol,Symbol), ::(Int64,Int64)) > > > > in call at /Users/zdavis/.julia/v0.4/Options/src/Options.jl:45 > > in call at /Users/zdavis/.julia/v0.4/Options/src/Options.jl:68 > > in parse_commandline at /Users/zdavis/bin/atmos:570 > > in main at /Users/zdavis/bin/atmos:82 > > in include at ./boot.jl:242 > > in include_from_node1 at loading.jl:128 > > in process_options at ./client.jl:293 > > in _start at ./client.jl:375 > > in _start at /Users/zdavis/Applications/Julia/usr/lib/julia/sys.dylib > > while loading /Users/zdavis/bin/atmos, in expression starting on line 122 > > > > I've attached the utility for anyone helpful enough to review. Any help > would be greatly appreciated. > > Thanks! > > >
