##// END OF EJS Templates
Backport PR #14148: fix RTD
Matthias Bussonnier -
Show More
@@ -0,0 +1,16 b''
1 version: 2
2
3 build:
4 os: ubuntu-22.04
5 tools:
6 python: "3.11"
7
8 sphinx:
9 configuration: docs/source/conf.py
10
11 # Optional but recommended, declare the Python requirements required
12 # to build your documentation
13 # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
14 python:
15 install:
16 - requirements: docs/requirements.txt
@@ -1,46 +1,47 b''
1 1 include README.rst
2 2 include COPYING.rst
3 3 include LICENSE
4 4 include setupbase.py
5 5 include MANIFEST.in
6 6 include py.typed
7 7 include .mailmap
8 8 include .flake8
9 9 include .pre-commit-config.yaml
10 10 include long_description.rst
11 11
12 12 recursive-exclude tools *
13 13 exclude tools
14 14 exclude CONTRIBUTING.md
15 15 exclude .editorconfig
16 16 exclude SECURITY.md
17 exclude .readthedocs.yaml
17 18
18 19 graft scripts
19 20
20 21 # Load main dir but exclude things we don't want in the distro
21 22 graft IPython
22 23
23 24 # Documentation
24 25 graft docs
25 26 exclude docs/\#*
26 27 exclude docs/man/*.1.gz
27 28
28 29 exclude .git-blame-ignore-revs
29 30
30 31 # Examples
31 32 graft examples
32 33
33 34 # docs subdirs we want to skip
34 35 prune docs/build
35 36 prune docs/gh-pages
36 37 prune docs/dist
37 38
38 39 # Patterns to exclude from any directory
39 40 global-exclude *~
40 41 global-exclude *.flc
41 42 global-exclude *.yml
42 43 global-exclude *.pyc
43 44 global-exclude *.pyo
44 45 global-exclude .dircopy.log
45 46 global-exclude .git
46 47 global-exclude .ipynb_checkpoints
General Comments 0
You need to be logged in to leave comments. Login now