File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Building the documentation
2
2
3
- Make sure you have ` Sphinx ` and ` sphinxcontrib-napoleon ` packages installed:
3
+ Make sure you have ` Sphinx ` package installed:
4
4
5
5
```
6
- pip install Sphinx sphinxcontrib-napoleon
6
+ pip install Sphinx
7
7
```
8
8
9
9
Then just run
@@ -12,4 +12,4 @@ Then just run
12
12
make html
13
13
```
14
14
15
- Documentation will be built in ` build/html ` directory. Other output formats are also available; run ` make ` without arguments to see the options.
15
+ Documentation will be built in ` build/html ` directory. Other output formats are also available; run ` make ` without arguments to see the options.
Original file line number Diff line number Diff line change 19
19
# -- Project information -----------------------------------------------------
20
20
21
21
project = u'testgres'
22
- copyright = u'2016-2018 , Postgres Professional'
22
+ copyright = u'2016-2022 , Postgres Professional'
23
23
author = u'Postgres Professional'
24
24
25
25
# The short X.Y version
36
36
# Add any Sphinx extension module names here, as strings. They can be
37
37
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
38
38
# ones.
39
- extensions = ['sphinx.ext.autodoc' , 'sphinxcontrib .napoleon' ]
39
+ extensions = ['sphinx.ext.autodoc' , 'sphinx.ext .napoleon' ]
40
40
41
41
# Add any paths that contain templates here, relative to this directory.
42
42
templates_path = ['_templates' ]
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- # Copyright (c) 2017, Postgres Professional
3
+ # Copyright (c) 2017-2022 Postgres Professional
4
4
5
5
set -eux
6
6
@@ -22,7 +22,7 @@ export VIRTUAL_ENV_DISABLE_PROMPT=1
22
22
source $VENV_PATH /bin/activate
23
23
24
24
# install utilities
25
- $PIP install coverage flake8 psutil Sphinx sphinxcontrib-napoleon
25
+ $PIP install coverage flake8 psutil Sphinx
26
26
27
27
# install testgres' dependencies
28
28
export PYTHONPATH=$( pwd)
You can’t perform that action at this time.
0 commit comments