Closed minrk closed 6 months ago
Looks like the oldest version of ZMQ.jl that doesn't rely on the removed repo requires Julia 1.3, starting with https://github.com/JuliaInterop/ZMQ.jl/pull/194 . So now Julia 1.3 is the oldest version we can support.
in fact, 1.3-1.5 fail with "No Such Device" in the precompile bind here:
ZMQ.bind(s1, "tcp://localhost:*")
so as it is now, only Julia >= 1.6 will actually work.
The precompile on 1.3-1.5 should be fixed by https://github.com/JuliaInterop/ZMQ.jl/pull/237
It would probably behoove us to have frozen base environments for Julia eventually. That wouldn't nave solved the current problem, though.
it doesn't work anymore because build dependencies of the old ZMQ.jl have been removed, so I don't see a feasible way for us to keep it working.
xref https://github.com/JuliaInterop/ZMQ.jl/issues/228
closes #1349