Can't install SampledSignals package because of "julia compatibility requirements to versions" ... 1.0.0

I installed Julia 1.0.3 (last stable release at time of writing this), but seems like SampledSignals does not work with this version. I thought about installing Julia 1.0.0, but can’t find an installable binary of it.

Any suggestions?

(v1.0) pkg> add SampledSignals
 Resolving package versions...
ERROR: Unsatisfiable requirements detected for package SampledSignals [bd7594eb]:
 SampledSignals [bd7594eb] log:
 ├─possible versions are: [0.0.1, 0.1.0, 0.2.0-0.2.1, 0.3.0-0.3.1, 1.0.0, 1.1.0, 1.1.2] or uninstalled
 ├─restricted to versions * by an explicit requirement, leaving only versions [0.0.1, 0.1.0, 0.2.0-0.2.1,0.3.0-0.3.1, 1.0.0, 1.1.0, 1.1.2]
 └─restricted by julia compatibility requirements to versions: uninstalled — no versions left

It looks like SampledSignals has a new version which support Julia 1.0, but that version hasn’t officially been released yet (it’s waiting on this: https://github.com/JuliaLang/METADATA.jl/pull/19905 to be merged).

Don’t worry about trying to install Julia 1.0.0: the set of available packages will always be the same for any 1.0.x version. Instead, you can just install the master branch of the package:

pkg> add SampledSignals#master
1 Like

Awesome! Thanks for the fast reply. And good to know that this notation (#master) seems to bypass the version requirements