Is there a way to get a list of available versions of a package?
I’m trying to get ahead on updating my code for Julia 0.6 but a package my code depends on, DataFrames, doesn’t work in 0.6 when I simply use Pkg.add; it fails on percompilation. I’ve checked the DataFrames Github page but it wasn’t clear to me if there was a working version for 0.6.
Julia Version 0.6.0-dev.1843
Commit c38a5a3 (2017-01-01 14:09 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Core™ i5-4570 CPU @ 3.20GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.9.1 (ORCJIT, haswell)
In that case, I don’t see other solution other than inspecting the REQUIRE file for each version tag. If you add DataFrames in Julia v0.6 and it fails saying that there is no support for that version, then you have to wait for a new release of DataFrames.