From dde50595862a4f9cede24b5d1c86935c30f1f88a Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Tue, 3 Jan 2023 12:12:42 -0700 Subject: [PATCH] REL: 1.10.0 final [wheel build] * set SciPy `1.10.0` final/released [wheel build] --- meson.build | 2 +- tools/version_utils.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 13d6fd4a26a0..2a26d0cdd4e9 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( # Note that the git commit hash cannot be added dynamically here (it is added # in the dynamically generated and installed `scipy/version.py` though - see # tools/version_utils.py - version: '1.10.0rc3', + version: '1.10.0', license: 'BSD-3', meson_version: '>= 0.64.0', default_options: [ diff --git a/tools/version_utils.py b/tools/version_utils.py index 25810965f601..7eaa7457068f 100644 --- a/tools/version_utils.py +++ b/tools/version_utils.py @@ -6,9 +6,9 @@ MAJOR = 1 MINOR = 10 MICRO = 0 -ISRELEASED = False +ISRELEASED = True IS_RELEASE_BRANCH = True -VERSION = '%d.%d.%drc3' % (MAJOR, MINOR, MICRO) +VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) def get_version_info(source_root):