Skip to content

Commit

Permalink
REL: SciPy 1.12.0rc1 [wheel build]
Browse files Browse the repository at this point in the history
* SciPy `1.12.0rc1` release commit

[wheel build]
  • Loading branch information
tylerjereddy committed Dec 20, 2023
1 parent 138cdbf commit b1f42da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion meson.build
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.12.0.dev0',
version: '1.12.0rc1',
license: 'BSD-3',
meson_version: '>= 1.1.0',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -39,7 +39,7 @@ requires = [

[project]
name = "SciPy"
version = "1.12.0.dev0"
version = "1.12.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"}
Expand Down
4 changes: 2 additions & 2 deletions tools/version_utils.py
Expand Up @@ -6,9 +6,9 @@
MAJOR = 1
MINOR = 12
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 b1f42da

Please sign in to comment.