From 3e1cd8e22c0ce5f85f4a1dc542eed84d8060d61d Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Fri, 17 Nov 2023 17:40:44 +0100 Subject: [PATCH] REL: set version to 1.5.0 --- meson.build | 6 ++---- pyproject.toml | 2 +- util/version_utils.py | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/meson.build b/meson.build index bc794441..4f1f4c4a 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'PyWavelets', 'c', 'cython', - version: '1.5.0.dev0', + version: '1.5.0', license: 'MIT', meson_version: '>= 1.1.0', default_options: [ @@ -13,9 +13,7 @@ project( cython = find_program('cython') -# https://mesonbuild.com/Python-module.html -py_mod = import('python') -py = py_mod.find_installation(pure: false) +py = import('python').find_installation(pure: false) py_dep = py.dependency() subdir('pywt') diff --git a/pyproject.toml b/pyproject.toml index 3d8897b5..27ad3b6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ requires = [ [project] name = "PyWavelets" -version = "1.5.0.dev0" +version = "1.5.0" # 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"} diff --git a/util/version_utils.py b/util/version_utils.py index dab8b92a..3acf2c64 100644 --- a/util/version_utils.py +++ b/util/version_utils.py @@ -6,8 +6,7 @@ MAJOR = 1 MINOR = 5 MICRO = 0 -ISRELEASED = False -IS_RELEASE_BRANCH = False +ISRELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)