File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
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.6.0rc1 ' ,
4
+ version : ' 1.7.0.dev0 ' ,
5
5
license : ' MIT' ,
6
6
meson_version : ' >= 1.1.0' ,
7
7
default_options : [
Original file line number Diff line number Diff line change 8
8
build-backend = " mesonpy"
9
9
requires = [
10
10
" meson-python>=0.15.0" ,
11
- # The upper bound on Cython is pre-emptive. The conditional compilation
12
- # with IF we use in Cython code is deprecated and will be removed from
13
- # Cython at some point.
14
- " Cython>=3.0.4,<3.1" ,
11
+ " Cython>=3.0.4" ,
15
12
16
13
# numpy requirement for wheel builds for distribution on PyPI - building
17
14
# against 2.x yields wheels that are also compatible with numpy 1.x at
18
15
# runtime.
19
16
# Note that building against numpy 1.x works fine too - users and
20
17
# redistributors can do this by installing the numpy version they like and
21
18
# disabling build isolation.
22
- " numpy>=2.0.0b1,<2.3 " ,
19
+ " numpy>=2.0.0b1" ,
23
20
]
24
21
25
22
[project ]
26
23
name = " PyWavelets"
27
- version = " 1.6.0rc1 "
24
+ version = " 1.7.0.dev0 "
28
25
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
29
26
# at that point, no longer include them in `py3.install_sources()`
30
27
license = {file = " LICENSE" }
Original file line number Diff line number Diff line change 3
3
import subprocess
4
4
5
5
MAJOR = 1
6
- MINOR = 6
6
+ MINOR = 7
7
7
MICRO = 0
8
- ISRELEASED = True
8
+ ISRELEASED = False
9
9
VERSION = '%d.%d.%d' % (MAJOR , MINOR , MICRO )
10
10
11
11
You can’t perform that action at this time.
0 commit comments