diff --git a/doc/release/1.5.0-notes.rst b/doc/release/1.5.0-notes.rst index 3170ee362c91..a81934c31739 100644 --- a/doc/release/1.5.0-notes.rst +++ b/doc/release/1.5.0-notes.rst @@ -2,8 +2,6 @@ SciPy 1.5.0 Release Notes ========================== -.. note:: Scipy 1.5.0 is not released yet! - .. contents:: SciPy 1.5.0 is the culmination of 6 months of hard work. It contains diff --git a/setup.py b/setup.py index dcf4ecbbaea9..3a49abc12f0b 100755 --- a/setup.py +++ b/setup.py @@ -56,8 +56,8 @@ MAJOR = 1 MINOR = 5 MICRO = 0 -ISRELEASED = True -VERSION = '%d.%d.%drc2' % (MAJOR, MINOR, MICRO) +ISRELEASED = False +VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Return the git revision as a string