From f8fd6e6f950661821f969d894fbb46b73ee2389c Mon Sep 17 00:00:00 2001 From: Michel Jouvin Date: Sat, 20 May 2017 11:41:07 +0200 Subject: [PATCH 1/4] Configure Travis to run Sphinx --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4320688 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - "2.7" + +install: + - pip install -q sphinx_rtd_theme + +script: + - make html + +sudo: false From 3ac6ebc699e3c82ebd33cf4eb94c0d51b4156a24 Mon Sep 17 00:00:00 2001 From: Michel Jouvin Date: Sat, 20 May 2017 11:51:25 +0200 Subject: [PATCH 2/4] Dummy mod to trig rebuild on ReadTheDocds --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 365dd28..24687e1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + # Source repository for Argus documentation Argus documentation is in [reST](http://www.sphinx-doc.org/en/stable/rest.html) (`RST`) format and From 29ee3c57396ccdb1eca3e64f3340d0d369b146fa Mon Sep 17 00:00:00 2001 From: Michel Jouvin Date: Mon, 22 May 2017 18:23:01 +0200 Subject: [PATCH 3/4] Revert "Dummy mod to trig rebuild on ReadTheDocds" This reverts commit 3ac6ebc699e3c82ebd33cf4eb94c0d51b4156a24. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 24687e1..365dd28 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ - # Source repository for Argus documentation Argus documentation is in [reST](http://www.sphinx-doc.org/en/stable/rest.html) (`RST`) format and From f5bc5abf41f82b24b09db87ebb190f3362f52376 Mon Sep 17 00:00:00 2001 From: Michel Jouvin Date: Mon, 22 May 2017 18:27:26 +0200 Subject: [PATCH 4/4] travis: install Sphinx --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4320688..552848a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: - "2.7" install: - - pip install -q sphinx_rtd_theme + - pip install -q Sphinx sphinx_rtd_theme script: - make html