summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-02-03 14:11:00 -0800
committerJeff Forcier <jeff@bitprophet.org>2014-02-03 14:11:00 -0800
commitc7090c52de983746cbccfcb8213d1d18132ae5f2 (patch)
tree2953eb943e73e514ae393c3e6fd5941782725544
parent792cfe0cf65b1ad45cea36e76c3be3d7535c47d7 (diff)
parent36abefdac05a1f764e7da0f258b5303b87384192 (diff)
downloadparamiko-c7090c52de983746cbccfcb8213d1d18132ae5f2.tar.gz
Merge branch '1.11' into 1.12
-rw-r--r--dev-requirements.txt2
-rw-r--r--sites/shared_conf.py5
-rw-r--r--sites/www/conf.py2
3 files changed, 5 insertions, 4 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt
index 43c21e38..9fa05df9 100644
--- a/dev-requirements.txt
+++ b/dev-requirements.txt
@@ -6,5 +6,5 @@ epydoc>=3.0,<3.1
invoke>=0.7.0
invocations>=0.4.4
sphinx>=1.1.3
-alabaster>=0.2.0
+alabaster>=0.3.0
releases>=0.2.4
diff --git a/sites/shared_conf.py b/sites/shared_conf.py
index 2b98654f..86ecdfe8 100644
--- a/sites/shared_conf.py
+++ b/sites/shared_conf.py
@@ -5,8 +5,9 @@ import sys
import alabaster
-# Alabaster theme
+# Alabaster theme + mini-extension
html_theme_path = [alabaster.get_path()]
+extensions = ['alabaster']
# Paths relative to invoking conf.py - not this shared file
html_static_path = ['../_shared_static']
html_theme = 'alabaster'
@@ -32,7 +33,7 @@ html_sidebars = {
# Regular settings
project = u'Paramiko'
year = datetime.now().year
-copyright = u'2013-%d Jeff Forcier, 2003-2012 Robey Pointer' % year
+copyright = u'%d Jeff Forcier' % year
master_doc = 'index'
templates_path = ['_templates']
exclude_trees = ['_build']
diff --git a/sites/www/conf.py b/sites/www/conf.py
index 1f11c1e2..481acdff 100644
--- a/sites/www/conf.py
+++ b/sites/www/conf.py
@@ -8,7 +8,7 @@ from shared_conf import *
# Local blog extension
sys.path.append(abspath('.'))
-extensions = ['blog']
+extensions.append('blog')
rss_link = 'http://paramiko.org'
rss_description = 'Paramiko project news'