Skip to content

Commit a3f0782

Browse files
committed
Merge branch '1.1.x'
2 parents 599f32c + 7fdd0df commit a3f0782

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CONTRIBUTING.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ First time setup
7979

8080
pip install -e ".[dev]"
8181

82-
- Install the pre-commit hooks:
82+
- Install the `pre-commit framework`_.
83+
- Install the pre-commit hooks::
8384

8485
pre-commit install --install-hooks
8586

@@ -89,6 +90,7 @@ First time setup
8990
.. _email: https://help.github.com/en/articles/setting-your-commit-email-address-in-git
9091
.. _Fork: https://github.com/pallets/flask/fork
9192
.. _Clone: https://help.github.com/en/articles/fork-a-repo#step-2-create-a-local-clone-of-your-fork
93+
.. _pre-commit framework: https://pre-commit.com/#install
9294

9395
Start coding
9496
~~~~~~~~~~~~

docs/Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Minimal makefile for Sphinx documentation
22
#
33

4-
# You can set these variables from the command line.
5-
SPHINXOPTS =
6-
SPHINXBUILD = sphinx-build
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
78
SOURCEDIR = .
89
BUILDDIR = _build
910

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import packaging
1+
import packaging.version
22
from pallets_sphinx_themes import get_version
33
from pallets_sphinx_themes import ProjectLink
44

docs/make.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ if errorlevel 9009 (
2525
exit /b 1
2626
)
2727

28-
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
2929
goto end
3030

3131
:help
32-
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
3333

3434
:end
3535
popd

docs/requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Sphinx~=2.1.2
2-
Pallets-Sphinx-Themes~=1.1.4
3-
sphinxcontrib-log-cabinet~=1.0.0
1+
Sphinx~=2.2.0
2+
Pallets-Sphinx-Themes~=1.2.2
3+
sphinxcontrib-log-cabinet~=1.0.1
44
sphinx-issues~=1.2.0
5+
packaging~=19.2

0 commit comments

Comments
 (0)