From 26b30d61173035044c16c5e27c11f0f425d57e11 Mon Sep 17 00:00:00 2001 From: dave <dave@dtu.dk> Date: Mon, 5 Dec 2016 14:15:58 +0100 Subject: [PATCH] doc: fix links in developer guide table of contents --- docs/developer-guide.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/developer-guide.md b/docs/developer-guide.md index 323278f..45122e1 100644 --- a/docs/developer-guide.md +++ b/docs/developer-guide.md @@ -6,15 +6,15 @@ contribute to wetb in a way that is efficient for everyone. ## Contents -- [Fork](#Fork-project) -- [Requirements](#Requirements) -- [Install Python](#Install-Python) -- [Install dependencies](#Install-dependencies) -- [Get wetb](#Get-wetb) -- [Install wetb](#Install-wetb) -- [Contributions](#Contributions) -- [Upload contributions](#Upload-contributions) -- [Make and upload wheels](#Make-and-upload-wheels) +- [Fork](#fork-project) +- [Requirements](#requirements) +- [Install Python](#install-python) +- [Install/build dependencies](#installbuild-dependencies) +- [Get wetb](#get-wetb) +- [Install wetb](#install-wetb) +- [Contributions](#contributions) +- [Upload contributions](#upload-contributions) +- [Make and upload wheels](#make-and-upload-wheels) ## Fork project @@ -220,8 +220,8 @@ make sure your git working directory is clean (no uncommitted changes etc). - ```python setup.py bdist_wheel -d dist``` (wheel includes compiled extensions) - On Linux you will have to rename the binary wheel file (see [PEP 513](https://www.python.org/dev/peps/pep-0513/) for a background discussion): - - wetb-0.0.5-cp35-cp35m-linux_x86_64.whl - - wetb-0.0.5-cp35-cp35m-manylinux1_x86_64.whl + - from: ```wetb-0.0.5-cp35-cp35m-linux_x86_64.whl``` + - to: ```wetb-0.0.5-cp35-cp35m-manylinux1_x86_64.whl``` - ```python setup.py sdist -d dist``` (for general source distribution installs) - ```twine upload dist/*``` -- GitLab