From 4db2cc477f8007355e681ffaf0c381f227aba960 Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Mon, 18 Mar 2024 20:11:13 -0600 Subject: [PATCH] REL: 1.13.0rc1 rel commit [wheel build] * SciPy `1.13.0rc1` release commit [wheel build] --- meson.build | 2 +- pyproject.toml | 2 +- tools/version_utils.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index 89563e251f27..8877b20cf7be 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.13.0.dev0', + version: '1.13.0rc1', license: 'BSD-3', meson_version: '>= 1.1.0', default_options: [ diff --git a/pyproject.toml b/pyproject.toml index 31a60e9b8468..9fdcb04e2439 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ requires = [ [project] name = "scipy" -version = "1.13.0.dev0" +version = "1.13.0rc1" # TODO: add `license-files` once PEP 639 is accepted (see meson-python#88) # at that point, no longer include them in `py3.install_sources()` license = {file = "LICENSE.txt"} diff --git a/tools/version_utils.py b/tools/version_utils.py index 6daa8f344a51..455200df61a3 100644 --- a/tools/version_utils.py +++ b/tools/version_utils.py @@ -6,9 +6,9 @@ MAJOR = 1 MINOR = 13 MICRO = 0 -ISRELEASED = False +ISRELEASED = True IS_RELEASE_BRANCH = True -VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) +VERSION = '%d.%d.%drc1' % (MAJOR, MINOR, MICRO) def get_version_info(source_root):