File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11project (
22 ' PyWavelets' ,
33 ' c' , ' cython' ,
4- version : ' 1.5.0.dev0 ' ,
4+ version : ' 1.5.0' ,
55 license : ' MIT' ,
66 meson_version : ' >= 1.1.0' ,
77 default_options : [
@@ -13,9 +13,7 @@ project(
1313
1414cython = find_program (' cython' )
1515
16- # https://mesonbuild.com/Python-module.html
17- py_mod = import (' python' )
18- py = py_mod.find_installation(pure : false )
16+ py = import (' python' ).find_installation(pure : false )
1917py_dep = py.dependency ()
2018
2119subdir (' pywt' )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ requires = [
2828
2929[project ]
3030name = " PyWavelets"
31- version = " 1.5.0.dev0 "
31+ version = " 1.5.0"
3232# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
3333# at that point, no longer include them in `py3.install_sources()`
3434license = {file = " LICENSE" }
Original file line number Diff line number Diff line change 66MAJOR = 1
77MINOR = 5
88MICRO = 0
9- ISRELEASED = False
10- IS_RELEASE_BRANCH = False
9+ ISRELEASED = True
1110VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
1211
1312
You can’t perform that action at this time.
0 commit comments