-
Notifications
You must be signed in to change notification settings - Fork 102
Modernize install-julia.sh for CI and drop Julia v0.5 #149
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
Conversation
I've also dropped Julia v0.5 on appveyor since it's no longer supported by PyCall.jl |
Ok, I've made some progress on this. I had to mark the v0.7 tests as allowed failures, since PyCall doesn't work with v0.7. It looks like there's also an existing problem with some of the v0.6 builds on windows: https://ci.appveyor.com/project/Keno/pyjulia/build/1.0.45/job/4eg7o7bh7fh7t6cu#L159 which existed previously: https://ci.appveyor.com/project/Keno/pyjulia/build/1.0.35/job/d6gu3c898kma3jid#L95 |
Ok, all checks are passing. Good to go? |
In osx build with |
I tried to fix it in #163. But it turned out Actually, I'm not familiar with Anyway, I think this PR is better be merged, even without solving this problem. |
Actually, I think now I solved it in #163! |
Great! I'll close this in favor of #163 |
I noticed that many of the Travis builds were failing, and I suspect it might be because the
install-julia.sh
script is using outdated Julia download URLs. This should update the download URLs to their new homes.I also noticed that this script accepted
download/win32
etc. as arguments, but (a) their URLs were also out of date and (b) if those URLs existed, the script would have done nothing with them on windows and tried to feed a windows.exe
directly intotar
on linux. So I've just deleted those arguments. Please let me know if you want them back.