Skip to content

Commit 6f596e5

Browse files
authored
Merge pull request #28 from pganssle/ignore_caches
General cleanup PR
2 parents 2fc71fa + 81f9f35 commit 6f596e5

File tree

8 files changed

+10
-5
lines changed

8 files changed

+10
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ nosetests.xml
4747
coverage.xml
4848
*,cover
4949
.hypothesis/
50+
.mypy_cache/
51+
.pytest_cache/
5052

5153
# Translations
5254
*.mo

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variants
44

55

66
.. image:: https://img.shields.io/pypi/v/variants.svg
7-
:target: https://pypi.python.org/pypi/variants
7+
:target: https://pypi.org/project/variants/
88

99
.. image:: https://img.shields.io/travis/python-variants/variants.svg
1010
:target: https://travis-ci.org/python-variants/variants

changelog.d/28.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Updated permanent redirect links in documentation.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111

112112
# The theme to use for HTML and HTML Help pages. See the documentation for
113113
# a list of builtin themes.
114-
html_theme = 'default'
114+
html_theme = 'sphinx_rtd_theme'
115115

116116
# Theme options are theme-specific and customize the look and feel of a
117117
# theme further. For a list of options available for each theme, see the

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This is the preferred method to install variants, as it will always install the
1919
If you don't have `pip`_ installed, this `Python installation guide`_ can guide
2020
you through the process.
2121

22-
.. _pip: https://pip.pypa.io
22+
.. _pip: https://pip.pypa.io/en/stable/
2323
.. _Python installation guide: http://docs.python-guide.org/en/latest/starting/installation/
2424

2525

docs/requirements-docs.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Sphinx
2+
sphinx_rtd_theme>=0.3.1

requirements_dev.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
pip
1+
pip >= 8.0
22
wheel
33
tox
44
coverage
5-
Sphinx
65
singledispatch; python_version <= '3.3'
76
pytest >= 3.0; python_version != '3.3'
87
pytest < 3.3; python_version == '3.3'

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ commands =
2929
description = invoke sphinx-build to build the HTML docs, check that URIs are valid
3030
basepython = python3.6
3131
deps = {[testenv]deps}
32+
-r{toxinidir}/docs/requirements-docs.txt
3233
commands = sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" {posargs:-W --color -bhtml}
3334
sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" {posargs:-W --color -blinkcheck}

0 commit comments

Comments
 (0)