From daf6e1ae6609d65a9931f9f5341dbcb3c7ac4369 Mon Sep 17 00:00:00 2001 From: Salem Lahlou Date: Sat, 11 Jan 2025 15:38:09 +0400 Subject: [PATCH 1/3] fix pyproject --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0523821a..55583eca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,7 @@ all = [ "wandb", ] -[project.urls] +[tool.poetry.urls] "Homepage" = "https://gfn.readthedocs.io/en/latest/" "Bug Tracker" = "https://github.com/saleml/gfn/issues" From 1017316617cb6f2e3a2a3e9def93d7144e5fe0f7 Mon Sep 17 00:00:00 2001 From: Salem Lahlou Date: Sat, 11 Jan 2025 15:41:58 +0400 Subject: [PATCH 2/3] make all the default install --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80687343..43c716cc 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ git clone https://github.com/GFNOrg/torchgfn.git conda create -n gfn python=3.10 conda activate gfn cd torchgfn -pip install . +pip install ".[all]" ``` From 46c17840ec1561fb3fa86e6666795463f485ec56 Mon Sep 17 00:00:00 2001 From: Salem Lahlou Date: Sat, 11 Jan 2025 15:44:39 +0400 Subject: [PATCH 3/3] make default the editable mode --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43c716cc..a00ec643 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ git clone https://github.com/GFNOrg/torchgfn.git conda create -n gfn python=3.10 conda activate gfn cd torchgfn -pip install ".[all]" +pip install -e ".[all]" ```