diff options
| author | Roger Meier <r.meier@siemens.com> | 2019-12-18 15:36:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-18 15:36:42 +0100 |
| commit | 5fa0e162f561451f7fa487dc4a4ff265c1d37f79 (patch) | |
| tree | 8890d5767a89adfd412a92e2a9e7d211c5048769 /docs | |
| parent | 5a10eb3af52a8619d446616196dd3c0c3b91c395 (diff) | |
| parent | c817dccde8c104dcb294bbf1590c7e3ae9539466 (diff) | |
| download | gitlab-5fa0e162f561451f7fa487dc4a4ff265c1d37f79.tar.gz | |
Merge pull request #980 from python-gitlab/refactor/cleanup-upgrade
Refactor/cleanup upgrade
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/cli.rst | 2 | ||||
| -rw-r--r-- | docs/ext/docstrings.py | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/docs/cli.rst b/docs/cli.rst index e87c6d1..3207902 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -162,7 +162,7 @@ These options must be defined before the mandatory arguments. **Notice:** The `PyYAML package <https://pypi.org/project/PyYAML/>`_ is required to use the yaml output option. - You need to install it separately using ``pip install PyYAML`` + You need to install it explicitly using ``pip install python-gitlab[yaml]`` ``--fields``, ``-f`` Comma-separated list of fields to display (``yaml`` and ``json`` output diff --git a/docs/ext/docstrings.py b/docs/ext/docstrings.py index e42bb60..754da27 100644 --- a/docs/ext/docstrings.py +++ b/docs/ext/docstrings.py @@ -3,7 +3,6 @@ import itertools import os import jinja2 -import six import sphinx import sphinx.ext.napoleon as napoleon from sphinx.ext.napoleon.docstring import GoogleDocstring @@ -25,7 +24,7 @@ def setup(app): conf = napoleon.Config._config_values - for name, (default, rebuild) in six.iteritems(conf): + for name, (default, rebuild) in conf.items(): app.add_config_value(name, default, rebuild) return {"version": sphinx.__display_version__, "parallel_read_safe": True} |
