Skip to content

Commit

Permalink
REL: set version to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Nov 17, 2023
1 parent 5c2b071 commit 3e1cd8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions 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: [
Expand All @@ -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')
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -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"}
Expand Down
3 changes: 1 addition & 2 deletions util/version_utils.py
Expand Up @@ -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)


Expand Down

0 comments on commit 3e1cd8e

Please sign in to comment.