File tree 3 files changed +4
-7
lines changed
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
project (
2
2
' PyWavelets' ,
3
3
' c' , ' cython' ,
4
- version : ' 1.5.0.dev0 ' ,
4
+ version : ' 1.5.0' ,
5
5
license : ' MIT' ,
6
6
meson_version : ' >= 1.1.0' ,
7
7
default_options : [
@@ -13,9 +13,7 @@ project(
13
13
14
14
cython = find_program (' cython' )
15
15
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 )
19
17
py_dep = py.dependency ()
20
18
21
19
subdir (' pywt' )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ requires = [
28
28
29
29
[project ]
30
30
name = " PyWavelets"
31
- version = " 1.5.0.dev0 "
31
+ version = " 1.5.0"
32
32
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
33
33
# at that point, no longer include them in `py3.install_sources()`
34
34
license = {file = " LICENSE" }
Original file line number Diff line number Diff line change 6
6
MAJOR = 1
7
7
MINOR = 5
8
8
MICRO = 0
9
- ISRELEASED = False
10
- IS_RELEASE_BRANCH = False
9
+ ISRELEASED = True
11
10
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
12
11
13
12
You can’t perform that action at this time.
0 commit comments