From e86b0f201c48fc36b1f635a892d3d0ee3d1e3dfe Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 21 Feb 2020 21:40:17 +0100 Subject: doc: try to install deps from Pipfile --- .readthedocs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.readthedocs.yml') diff --git a/.readthedocs.yml b/.readthedocs.yml index 6514c09..041d294 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -8,7 +8,9 @@ formats: python: version: 3.7 + install: + - pipfile: doc sphinx: builder: singlehtml - configuration: doc/src/conf.py \ No newline at end of file + configuration: doc/src/conf.py -- cgit v1.2.3 From 4ae07755ec05877a4ad88e82429b2ea9685b5587 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 21 Feb 2020 21:42:09 +0100 Subject: doc: try to fix rtd configuration --- .readthedocs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.readthedocs.yml') diff --git a/.readthedocs.yml b/.readthedocs.yml index 041d294..fcbb0ed 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,7 +9,8 @@ formats: python: version: 3.7 install: - - pipfile: doc + - method: pipfile + path: doc sphinx: builder: singlehtml -- cgit v1.2.3 From 8f94dedb7bf0eb02af42199ef5ebb26de498b176 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 21 Feb 2020 21:51:50 +0100 Subject: doc: replace Pipfile with requirements.txt --- .readthedocs.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.readthedocs.yml') diff --git a/.readthedocs.yml b/.readthedocs.yml index fcbb0ed..9f785e6 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,8 +9,7 @@ formats: python: version: 3.7 install: - - method: pipfile - path: doc + - requirements: docs/requirements.txt sphinx: builder: singlehtml -- cgit v1.2.3 From da08fcb57fd7276649af800a61ee9c008026b6c2 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 21 Feb 2020 21:53:05 +0100 Subject: doc: fix requirements path in rtd config --- .readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.readthedocs.yml') diff --git a/.readthedocs.yml b/.readthedocs.yml index 9f785e6..6dd17ed 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -9,7 +9,7 @@ formats: python: version: 3.7 install: - - requirements: docs/requirements.txt + - requirements: doc/requirements.txt sphinx: builder: singlehtml -- cgit v1.2.3