##// END OF EJS Templates
Backport PR #5503: check explicitly for 'dev' before adding the note to docs...
Thomas Kluyver -
Show More
@@ -68,12 +68,12 b" templates_path = ['_templates']"
68 68 # The suffix of source filenames.
69 69 source_suffix = '.rst'
70 70
71 if iprelease['_version_extra']:
71 if iprelease['_version_extra'] == 'dev':
72 72 rst_prolog = """
73 73 .. note::
74 74
75 75 This documentation is for a development version of IPython. There may be
76 significant differences from the latest stable release (1.2.1).
76 significant differences from the latest stable release.
77 77
78 78 """
79 79
@@ -82,7 +82,7 b" master_doc = 'index'"
82 82
83 83 # General substitutions.
84 84 project = 'IPython'
85 copyright = '2008, The IPython Development Team'
85 copyright = 'The IPython Development Team'
86 86
87 87 # ghissue config
88 88 github_project_url = "https://github.com/ipython/ipython"
General Comments 0
You need to be logged in to leave comments. Login now