File tree 9 files changed +9
-9
lines changed
9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2
2
** /__pycache__ /**
3
3
* .ipynb
4
4
* .ipynb_checkpoints /**
5
- docs /build /**
5
+ docs /_build /**
Original file line number Diff line number Diff line change 27
27
rev : ' v0.910' # Use the sha / tag you want to point at
28
28
hooks :
29
29
- id : mypy
30
- exclude : docs/source/ conf.py
30
+ exclude : docs/conf.py
31
31
additional_dependencies :
32
32
- types-PyYAML
33
33
- repo : https://github.com/codespell-project/codespell
Original file line number Diff line number Diff line change 4
4
image : latest
5
5
6
6
sphinx :
7
- configuration : docs/source/ conf.py
7
+ configuration : docs/conf.py
8
8
9
9
python :
10
10
version : 3.7
11
11
install :
12
- - requirements : docs/source/ requirements.txt
12
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 5
5
# from the environment for the first two.
6
6
SPHINXOPTS ?=
7
7
SPHINXBUILD ?= sphinx-build
8
- SOURCEDIR = source
9
- BUILDDIR = build
8
+ SOURCEDIR = .
9
+ BUILDDIR = _build
10
10
11
11
# Put it first so that "make" without argument is like "make help".
12
12
help :
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ REM Command file for Sphinx documentation
7
7
if " %SPHINXBUILD% " == " " (
8
8
set SPHINXBUILD = sphinx-build
9
9
)
10
- set SOURCEDIR = source
11
- set BUILDDIR = build
10
+ set SOURCEDIR = .
11
+ set BUILDDIR = _build
12
12
13
13
if " %1 " == " " goto help
14
14
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
[mypy]
2
2
ignore_missing_imports = True
3
3
follow_imports = silent
4
- exclude = docs/source/ conf.py
4
+ exclude = docs/conf.py
You can’t perform that action at this time.
0 commit comments