Skip to content

Commit fc4b054

Browse files
authored
Merge pull request #579 from PythonCharmers/add-doc-requirements
2 parents 28b3361 + 3f40bd7 commit fc4b054

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Diff for: README.rst

+6-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
Overview: Easy, clean, reliable Python 2/3 compatibility
44
========================================================
55

6+
.. image:: https://travis-ci.org/PythonCharmers/python-future.svg?branch=master
7+
:target: https://travis-ci.org/PythonCharmers/python-future
8+
9+
.. image:: https://readthedocs.org/projects/python-future/badge/?version=latest
10+
:target: https://python-future.readthedocs.io/en/latest/?badge=latest
11+
612
``python-future`` is the missing compatibility layer between Python 2 and
713
Python 3. It allows you to use a single, clean Python 3.x-compatible
814
codebase to support both Python 2 and Python 3 with minimal overhead.
@@ -22,9 +28,6 @@ are `Mezzanine <http://mezzanine.jupo.org/>`_ and `ObsPy
2228
Features
2329
--------
2430

25-
.. image:: https://travis-ci.org/PythonCharmers/python-future.svg?branch=master
26-
:target: https://travis-ci.org/PythonCharmers/python-future
27-
2831
- ``future.builtins`` package (also available as ``builtins`` on Py2) provides
2932
backports and remappings for 20 builtins with different semantics on Py3
3033
versus Py2

Diff for: docs/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sphinx==3.2.1
2+
sphinx_bootstrap_theme==0.7.1

Diff for: tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,5 @@ commands = pytest {posargs}
1212

1313
[testenv:docs]
1414
deps =
15-
sphinx
16-
sphinx_bootstrap_theme
15+
-rdocs/requirements.txt
1716
commands = sphinx-build docs build

0 commit comments

Comments
 (0)