Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of outdated packages in Julia

Tags:

julia

Is there a way to list all outdated packages in Julia? An equivalent of pip3 list --outdated in Python.

I made a couple searches (1, 2), but couldn't find an answer.

like image 264
Joris Limonier Avatar asked Mar 02 '23 09:03

Joris Limonier


1 Answers

This feature is implemented for the upcoming Julia 1.8 release as the --outdated flag to the status command:

(v1) pkg> status
Status `~/.julia/environments/v1/Project.toml`
  [7876af07] Example v0.5.1

(v1) pkg> status --outdated
Status `~/.julia/environments/v1/Project.toml`
  [7876af07] Example v0.5.1 (<v0.5.3)

See https://github.com/JuliaLang/Pkg.jl/pull/2284

like image 62
fredrikekre Avatar answered Jun 05 '23 12:06

fredrikekre