Is `get_shortest_path` deprecated?

Hello, I’m using the Python igraph library 0.10.4 and would like to the single shortest path between two vertices. I first tried with get_shortest_path which did not seem to work but doing get_shortest_k_paths(...)[0] seemed to work fine as a replacement. Is get_shortest_path deprecated? It’s still mentioned in the online documentation.

https://python.igraph.org/en/stable/api/igraph.GraphBase.html#get_shortest_path

Update to the latest version, 0.10.6, whose docs you are referencing.

Thanks! I didn’t realize the documentation was 0.10.6 and when I had tried to update igraph with pip I didn’t see any change. I forced an install of that specific version and we’re good. :slight_smile: