From 4280913e581db7f7061af117b4d47e02318c98df Mon Sep 17 00:00:00 2001 From: scott-vsi Date: Thu, 13 Jan 2022 15:30:23 -0500 Subject: [PATCH 1/4] fix the edit button in the documentation Per https://www.mkdocs.org/user-guide/configuration/#edit_uri. Although edit_uri is auto derived on github, it points to edit/master/docs/, not edit/master/tutorial/ --- mkdocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/mkdocs.yml b/mkdocs.yml index 7056f16e..264740d7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,6 +5,7 @@ repo_url: 'https://github.com/libigl/libigl-python-bindings' site_description: "Simple Python geometry processing library" # strict: true docs_dir: 'tutorial' +edit_uri: 'edit/master/tutorial/' remote_branch: 'gh-pages' theme: name: material From 014e983c546ec8da7a7423c69def47ab27f8ec6d Mon Sep 17 00:00:00 2001 From: Alec Jacobson Date: Fri, 25 Feb 2022 17:39:52 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a35e6c4..db84eda2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ python setup.py install ## Compiling and modifying the bindiings -After cloning this repository, you can compile the bindings from scratch by running: +After cloning this repository and installing numpy, you can compile the bindings from scratch by running: ``` python setup.py develop ``` From 63e2606bede478ecb85bfcc5640b6a9f980a4c31 Mon Sep 17 00:00:00 2001 From: Alec Jacobson Date: Fri, 25 Feb 2022 18:28:33 -0500 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db84eda2..5f1957d7 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ python setup.py install ## Compiling and modifying the bindiings -After cloning this repository and installing numpy, you can compile the bindings from scratch by running: +After cloning this repository and installing numpy and pybind11, you can compile the bindings from scratch by running: ``` python setup.py develop ``` From c906e259c9b37d5f97faa916228ec57999bd566d Mon Sep 17 00:00:00 2001 From: Alec Jacobson Date: Fri, 25 Feb 2022 18:32:14 -0500 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f1957d7..43253a99 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ python setup.py install ## Compiling and modifying the bindiings -After cloning this repository and installing numpy and pybind11, you can compile the bindings from scratch by running: +After installing numpy & scipy and then cloning this repository, you can compile the bindings from scratch by running: ``` python setup.py develop ```