From 32ceaff8b85deb91b5bbd2b2114a60ffb9a9b8a5 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Sun, 3 Nov 2013 16:33:30 -0800 Subject: [PATCH 1/3] Ignore eggs --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 25158d66..282c5e6c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *.egg-info +*.egg *build/ .tox .coverage From eeb9bc571099c95e569fa6d8582f2804b7646422 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Sun, 3 Nov 2013 16:33:41 -0800 Subject: [PATCH 2/3] Bump version --- dist/sphinx_rtd_theme/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/sphinx_rtd_theme/__init__.py b/dist/sphinx_rtd_theme/__init__.py index e9b393f2..c4298678 100644 --- a/dist/sphinx_rtd_theme/__init__.py +++ b/dist/sphinx_rtd_theme/__init__.py @@ -5,7 +5,7 @@ From https://github.com/ryan-roemer/sphinx-bootstrap-theme. """ import os -VERSION = (0, 1, 0) +VERSION = (0, 1, 1) __version__ = ".".join(str(v) for v in VERSION) __version_full__ = __version__ From 0edf123721b1e8951bc51b1145153881a591360a Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Sun, 3 Nov 2013 16:46:07 -0800 Subject: [PATCH 3/3] Fix code calls --- README.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 2ea561e6..73a49a75 100644 --- a/README.rst +++ b/README.rst @@ -29,13 +29,13 @@ Via package Download the package or add it to your ``requirements.txt`` file: -.. code-block:: bash +.. code:: bash $ pip install sphinx_rtd_theme In your ``conf.py`` file: -.. code-block:: python +.. code:: python import sphinx_rtd_theme @@ -50,7 +50,7 @@ Symlink or subtree the ``sphinx_rtd_theme/sphinx_rtd_theme`` repository into you ``docs/_themes/sphinx_rtd_theme`` then add the following two settings to your Sphinx conf.py file: -.. code-block:: python +.. code:: python html_theme = "sphinx_rtd_theme" html_theme_path = ["_themes", ] @@ -81,19 +81,19 @@ Set up your environment 1. Install sphinx_ into a virtual environment. -.. code-block:: +.. code:: pip install sphinx 2. Install sass and compass -.. code-block:: +.. code:: gem install sass compass 2. Install node, bower and grunt. -.. code-block:: +.. code:: // Install node brew install node @@ -107,7 +107,7 @@ Set up your environment Now that our environment is set up, make sure you're in your virtual environment, go to this repository in your terminal and run grunt: -.. code-block:: +.. code:: grunt