From d60c1b391ed66f8ab37889cec5e8f73a20c51d4c Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Sat, 20 Jun 2020 11:30:48 -0600 Subject: [PATCH] MAINT: prepare for SciPy 1.5.0 "final" * there are no backports needed for SciPy `1.5.0` final * set the version number to `1.5.0` (removing the `rc2`) unreleased * remove the `Note:` in the release notes about `1.5.0` not being released yet --- doc/release/1.5.0-notes.rst | 2 -- setup.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) 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