Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
26b75f51
Commit
26b75f51
authored
May 15, 2018
by
Paul Ganssle
Committed by
GitHub
May 15, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1357 from jmbowman/jmbowman/fix_doc_warnings
Fix doc build warnings
parents
c70cc12b
78e887ff
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
4 deletions
+9
-4
changelog.d/1357.doc.rst
changelog.d/1357.doc.rst
+1
-0
docs/conf.py
docs/conf.py
+4
-1
docs/pkg_resources.txt
docs/pkg_resources.txt
+1
-0
docs/setuptools.txt
docs/setuptools.txt
+1
-1
tox.ini
tox.ini
+2
-2
No files found.
changelog.d/1357.doc.rst
0 → 100644
View file @
26b75f51
Fixed warnings in documentation builds and started enforcing that the docs build without warnings in tox.
docs/conf.py
View file @
26b75f51
...
@@ -34,7 +34,7 @@ import os
...
@@ -34,7 +34,7 @@ import os
# Add any Sphinx extension module names here, as strings. They can be extensions
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions
=
[
'jaraco.packaging.sphinx'
,
'rst.linker'
,
'sphinx.ext.autosectionlabel'
]
extensions
=
[
'jaraco.packaging.sphinx'
,
'rst.linker'
]
# Add any paths that contain templates here, relative to this directory.
# Add any paths that contain templates here, relative to this directory.
templates_path
=
[
'_templates'
]
templates_path
=
[
'_templates'
]
...
@@ -45,6 +45,9 @@ source_suffix = '.txt'
...
@@ -45,6 +45,9 @@ source_suffix = '.txt'
# The master toctree document.
# The master toctree document.
master_doc
=
'index'
master_doc
=
'index'
# A list of glob-style patterns that should be excluded when looking for source files.
exclude_patterns
=
[
'requirements.txt'
]
# List of directories, relative to source directory, that shouldn't be searched
# List of directories, relative to source directory, that shouldn't be searched
# for source files.
# for source files.
exclude_trees
=
[]
exclude_trees
=
[]
...
...
docs/pkg_resources.txt
View file @
26b75f51
...
@@ -1087,6 +1087,7 @@ so that supporting custom importers or new distribution formats can be done
...
@@ -1087,6 +1087,7 @@ so that supporting custom importers or new distribution formats can be done
simply by creating an appropriate `IResourceProvider`_ implementation; see the
simply by creating an appropriate `IResourceProvider`_ implementation; see the
section below on `Supporting Custom Importers`_ for more details.
section below on `Supporting Custom Importers`_ for more details.
.. _ResourceManager API:
``ResourceManager`` API
``ResourceManager`` API
=======================
=======================
...
...
docs/setuptools.txt
View file @
26b75f51
...
@@ -242,7 +242,6 @@ have setuptools automatically tag your in-development releases with various
...
@@ -242,7 +242,6 @@ have setuptools automatically tag your in-development releases with various
pre- or post-release tags. See the following sections for more details:
pre- or post-release tags. See the following sections for more details:
* `Tagging and "Daily Build" or "Snapshot" Releases`_
* `Tagging and "Daily Build" or "Snapshot" Releases`_
* `Managing "Continuous Releases" Using Subversion`_
* The `egg_info`_ command
* The `egg_info`_ command
...
@@ -1366,6 +1365,7 @@ then make an explicit declaration of ``True`` or ``False`` for the ``zip_safe``
...
@@ -1366,6 +1365,7 @@ then make an explicit declaration of ``True`` or ``False`` for the ``zip_safe``
flag, so that it will not be necessary for ``bdist_egg`` or ``EasyInstall`` to
flag, so that it will not be necessary for ``bdist_egg`` or ``EasyInstall`` to
try to guess whether your project can work as a zipfile.
try to guess whether your project can work as a zipfile.
.. _Namespace Packages:
Namespace Packages
Namespace Packages
------------------
------------------
...
...
tox.ini
View file @
26b75f51
...
@@ -38,8 +38,8 @@ deps = -r{toxinidir}/docs/requirements.txt
...
@@ -38,8 +38,8 @@ deps = -r{toxinidir}/docs/requirements.txt
skip_install
=
True
skip_install
=
True
commands
=
commands
=
python
{toxinidir}/bootstrap.py
python
{toxinidir}/bootstrap.py
sphinx-build
-b
html
-d
{envtmpdir}/doctrees
docs
docs/build/html
sphinx-build
-
W
-
b
html
-d
{envtmpdir}/doctrees
docs
docs/build/html
sphinx-build
-b
man
-d
{envtmpdir}/doctrees
docs
docs/build/man
sphinx-build
-
W
-
b
man
-d
{envtmpdir}/doctrees
docs
docs/build/man
[coverage:run]
[coverage:run]
source
=
source
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment