JuliaMath / HCubature.jl

pure-Julia multidimensional h-adaptive integration
Other
153 stars 25 forks source link

Update HCubature.jl #15

Closed yakir12 closed 5 years ago

yakir12 commented 5 years ago

fixes #14

stevengj commented 5 years ago

Shouldn't the required version number (in the REQUIRE file) for DataStructures.jl be changed too?

yakir12 commented 5 years ago

But there wasn't one before. Should we set a lower bound for each dependency that got a breaking change...? I guess the answer is yes..? But seems like a lot of work? If the user updates then both HCubature and DataStructures get updated... sorry, I don't understand.

lstagner commented 5 years ago

You need to specify that HCubature.jl will not work with older versions of DataStructures.jl To do this all you need to do append the minimum version number to the DataStructures entry the REQUIRE file, like so

DataStructures 0.15.0
yakir12 commented 5 years ago

I see. TIL.. But for real, I didn't know that we're supposed to shepherd all the dependencies like that. Cool.