From 9c99b9bf0e360455af5f6b9a6fc9c7d75f83c1df Mon Sep 17 00:00:00 2001 From: mgao97 Date: Thu, 11 Apr 2024 09:40:54 +0800 Subject: [PATCH] update readme --- README.md | 6 ------ easygraph/functions/community/ego_graph.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 50a10c8a..a3e3e9ba 100644 --- a/README.md +++ b/README.md @@ -57,16 +57,10 @@ Stargazers Install ------- -The current version on PyPI is outdated, we'll push the latest version as soon as we figure out how to integrate the C++ binding framework we use with our CI pipeline. - -In the meantime, here's a work around you can try to install the latest version of easygraph on your machine: - - **Prerequisites** ``3.8 <= Python <= 3.12`` is required. -Installation with ``pip`` (outdated) - - **Installation with** ``pip`` ``` $ pip install --upgrade Python-EasyGraph diff --git a/easygraph/functions/community/ego_graph.py b/easygraph/functions/community/ego_graph.py index d33724c9..609a541f 100644 --- a/easygraph/functions/community/ego_graph.py +++ b/easygraph/functions/community/ego_graph.py @@ -10,7 +10,7 @@ def ego_graph(G, n, radius=1, center=True, undirected=False, distance=None): Parameters ---------- G : graph - A NetworkX Graph or DiGraph + A EasyGraph Graph or DiGraph n : node A single node