Error when submitting package in Julia

118 views Asked by At

I'm trying to make changes to a package in Julia but every time I submit I encounter the following bug

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?

1

There are 1 answers

0
rickhg12hs On

Using Julia's Pkg.submit("PackageName") to create a GitHub pull request requires that all of the steps listed in Julia's Package Develop Initial Setup be completed successfully first.

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

Note that you can still create a pull request "old school" style by forking the package on GitHub (just click the button), modify/test your personal fork, and then submit a pull request on GitHub.