Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
  • 2 commits
  • 6 files changed
  • 0 commit comments
  • 1 contributor
Showing with 14 additions and 11 deletions.
  1. +0 −3 .gitmodules
  2. +2 −5 docs/Makefile
  3. +0 −1 docs/_themes
  4. +3 −2 docs/conf.py
  5. +1 −0 rtd.txt
  6. +8 −0 setup.py
View

This file was deleted.

Oops, something went wrong.
View
@@ -25,7 +25,7 @@ help:
clean:
-rm -rf _build/*
html: _themes/
html:
mkdir -p _build/html _build/doctrees
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
@echo
@@ -47,7 +47,7 @@ pickle:
web: pickle
htmlhelp: _themes
htmlhelp:
mkdir -p _build/htmlhelp _build/doctrees
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp
@echo
@@ -83,6 +83,3 @@ epub:
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) _build/epub
@echo
@echo "Build finished. The epub file is in _build/epub."
_themes:
git clone git://github.com/Pylons/pylons_sphinx_theme.git _themes
Submodule _themes deleted from de1ebd
View
@@ -15,6 +15,7 @@
import datetime
import inspect
import warnings
import pylons_sphinx_themes
warnings.simplefilter('ignore', DeprecationWarning)
@@ -118,10 +119,10 @@ def nothing(*arg):
# Options for HTML output
# -----------------------
# Add and use Pylons theme
# Add and use Pyramid theme
sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes']
html_theme = 'pyramid'
html_theme_path = pylons_sphinx_themes.get_html_themes_path()
# The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths
View
@@ -0,0 +1 @@
-e .[docs]
View
@@ -22,6 +22,13 @@
'pytest-cov',
]
docs_extras = [
'Sphinx >= 1.3.1', # Read The Docs minimum version
'docutils',
'repoze.sphinx.autointerface',
'pylons-sphinx-themes',
]
setup(
name='pyramid_simpleform',
version='0.7-dev0',
@@ -53,6 +60,7 @@
':python_version>="3.3"': ['WebHelpers2'],
':python_version=="2.7"': ['WebHelpers'],
'testing': testing_extras,
'docs':docs_extras,
},
test_suite="pyramid_simpleform",
)

No commit comments for this range