Skip to content

Commit 3e47110

Browse files
committed
REL: 1.10.0rc3 unreleased
* set version to `1.10.0rc3` unreleased
1 parent 496efea commit 3e47110

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(
44
# Note that the git commit hash cannot be added dynamically here (it is added
55
# in the dynamically generated and installed `scipy/version.py` though - see
66
# tools/version_utils.py
7-
version: '1.10.0rc2',
7+
version: '1.10.0rc3',
88
license: 'BSD-3',
99
meson_version: '>= 0.64.0',
1010
default_options: [

tools/version_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
MAJOR = 1
77
MINOR = 10
88
MICRO = 0
9-
ISRELEASED = True
9+
ISRELEASED = False
1010
IS_RELEASE_BRANCH = True
11-
VERSION = '%d.%d.%drc2' % (MAJOR, MINOR, MICRO)
11+
VERSION = '%d.%d.%drc3' % (MAJOR, MINOR, MICRO)
1212

1313

1414
def get_version_info(source_root):

0 commit comments

Comments
 (0)