Error sending package to Julia

I am trying to make changes to a package in Julia but every time I submit I am faced with the following error

INFO: Forking jiahao/GSL.jl to blah
Enter host password for user 'blah':
ERROR: Unknown value
Line: 0
Around: ...HTTP/1.1 422 Unproces...

      

Any idea what's going on here?

+3


source to share


1 answer


With Julia, Pkg.submit("PackageName")

creating a GitHub pick request requires all steps listed in the Julia Package Develop Initial Setup to complete successfully.

In particular, your SSH GitHub keys need to be configured correctly.



Note that you can still create an "old school" style for pull request by marking up the package on GitHub (just click the button), change / check your personal fork, and then submit the pull request to GitHub.

+1


source







All Articles