CarloLucibello / GraphNeuralNetworks.jl

Graph Neural Networks in Julia
https://carlolucibello.github.io/GraphNeuralNetworks.jl/dev/
MIT License
220 stars 46 forks source link

Outdated default package installation #348

Closed Ochibobo closed 11 months ago

Ochibobo commented 11 months ago

The default installation seems to be 0.6.7. This means features like TGCN and A3TGCN are missing. According to the registry the version ought to be 0.6.14. Where could the issue be?

CarloLucibello commented 11 months ago

Probably you are installing GraphNeuralNetworks.jl in an environment where some other package is preventing you to have the latest version. Execute

 pkg> st --outdated

to understand where the problem is.

Ochibobo commented 11 months ago

You are actually right @CarloLucibello. Thanks.