Skip to content

Commit

Permalink
REL: set 1.9.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjereddy committed Jun 23, 2022
1 parent 000fefb commit 72a5f46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0.dev0',
version: '1.9.0rc1',
license: 'BSD-3',
meson_version: '>= 0.60,< 0.66',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions tools/version_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
MAJOR = 1
MINOR = 9
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):
Expand Down

0 comments on commit 72a5f46

Please sign in to comment.