Mageek
Mageek

Reputation: 4911

How to Update a Dependency in a Julia Package Under Development

I am developing a Julia package that I have added via dev <github url>. I can enter Pkg mode in the terminal via ] activate and get the prompt I want.

Suppose I want to change the version of Flux used with the package from v0.9.0 to v0.10.0. How do I go about doing that?

Upvotes: 6

Views: 1760

Answers (1)

fredrikekre
fredrikekre

Reputation: 10984

You can use pkg> update Flux or pkg> add [email protected] in the same environment where you have added the package you are developing.

Upvotes: 6

Related Questions