-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Add julia line to compat example #28947
Conversation
Add `julia = "1.0"` to compat example in Compatibility section. Since julia is not a package, it's not obvious this is the place to put this, so adding the explicit example is helpful.
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.
Seems reasonable to me. @KristofferC?
Yes (I think I have a branch somewhere that does this so it is indeed something that we should do). But can you please open this change against the https://github.com/JuliaLang/Pkg.jl repo. We try to make all changes to Pkg there now. |
Adding this PR here instead of [JuliaLang](JuliaLang/julia#28947) per @KristofferC
Sounds good! Opened the PR |
702: add support for "ssh" protocol r=KristofferC a=Evizero This is a minimalistic change to support the use of `Pkg.setprotocol!("ssh")` to fix #653. My naive reasoning here is that since "github" is hardcoded anyway, one might as well adapt the URL string for when using the ~~"git"~~ "ssh" protocol. Note though that this only works if the repo has not been cloned into ".julia/clones" already using the defaul setting (i.e. https). If that is the case then `dev Example` will say ``` Updating git-repo `[email protected]:JuliaLang/Example.jl.git` ``` while `git remote -v` in that new dev-ed directory will still show `origin` using the `https` version. Not sure where to fix that. 716: Update project.toml compat example r=KristofferC a=mcmcgrath13 Adding this PR here instead of [JuliaLang](JuliaLang/julia#28947) per @KristofferC Co-authored-by: Christof Stocker <[email protected]> Co-authored-by: Mary McGrath <[email protected]>
Adding this PR here instead of [JuliaLang](JuliaLang/julia#28947) per @KristofferC (cherry picked from commit 9673615)
Adding this PR here instead of [JuliaLang](#28947) per @KristofferC (cherry picked from commit 96736153524144d83e9d6458feae7a39be7d1b7d) (cherry picked from commit ac5965bf9a8a5b4de535e3b3e2bc4668719fd51b)
Adding this PR here instead of [JuliaLang](#28947) per @KristofferC (cherry picked from commit 96736153524144d83e9d6458feae7a39be7d1b7d) (cherry picked from commit ac5965bf9a8a5b4de535e3b3e2bc4668719fd51b) (cherry picked from commit 4a72ad4)
Adding this PR here instead of [JuliaLang](JuliaLang/julia#28947) per @KristofferC (cherry picked from commit 9673615)
Adding this PR here instead of [JuliaLang](JuliaLang/julia#28947) per @KristofferC (cherry picked from commit 9673615) (cherry picked from commit ac5965b)
Adding this PR here instead of [JuliaLang](#28947) per @KristofferC (cherry picked from commit 96736153524144d83e9d6458feae7a39be7d1b7d) (cherry picked from commit ac5965bf9a8a5b4de535e3b3e2bc4668719fd51b) (cherry picked from commit 4a72ad4)
Add
julia = "1.0"
to compat example in Compatibility section. Since julia is not a package, it's not obvious this is the place to put this, so adding the explicit example is helpful.