Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 78f245f

Browse files
committed
Merge pull request ipython#5503 from minrk/dev-note
check explicitly for 'dev' before adding the note to docs
2 parents 55dccee + 2637553 commit 78f245f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
# The suffix of source filenames.
6969
source_suffix = '.rst'
7070

71-
if iprelease['_version_extra']:
71+
if iprelease['_version_extra'] == 'dev':
7272
rst_prolog = """
7373
.. note::
7474
7575
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.
7777
7878
"""
7979

@@ -82,7 +82,7 @@
8282

8383
# General substitutions.
8484
project = 'IPython'
85-
copyright = '2008, The IPython Development Team'
85+
copyright = 'The IPython Development Team'
8686

8787
# ghissue config
8888
github_project_url = "https://github.com/ipython/ipython"

0 commit comments

Comments
 (0)