-
Notifications
You must be signed in to change notification settings - Fork 362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove support for deprecated Julia REQUIRE, Julia < 1.3 #1350
Conversation
Looks like the oldest version of ZMQ.jl that doesn't rely on the removed repo requires Julia 1.3, starting with JuliaInterop/ZMQ.jl#194 . So now Julia 1.3 is the oldest version we can support. |
it doesn't work anymore because build dependencies of the old ZMQ.jl have been removed.
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 JuliaInterop/ZMQ.jl#237 |
It would probably behoove us to have frozen base environments for Julia eventually. That wouldn't nave solved the current problem, though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! https://github.com/JuliaInterop/ZMQ.jl/releases/tag/v1.2.5 was released, so if CI passes this can be merged
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 JuliaInterop/ZMQ.jl#228
closes #1349