Skip to content

Commit 622bcd5

Browse files
authored
Merge pull request #726 from rgommers/1.7.0-dev
MAINT: set version to 1.7.0.dev0
2 parents 3606379 + 84a6f7c commit 622bcd5

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'PyWavelets',
33
'c', 'cython',
4-
version: '1.6.0rc1',
4+
version: '1.7.0.dev0',
55
license: 'MIT',
66
meson_version: '>= 1.1.0',
77
default_options: [

pyproject.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,20 @@
88
build-backend = "mesonpy"
99
requires = [
1010
"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",
1512

1613
# numpy requirement for wheel builds for distribution on PyPI - building
1714
# against 2.x yields wheels that are also compatible with numpy 1.x at
1815
# runtime.
1916
# Note that building against numpy 1.x works fine too - users and
2017
# redistributors can do this by installing the numpy version they like and
2118
# disabling build isolation.
22-
"numpy>=2.0.0b1,<2.3",
19+
"numpy>=2.0.0b1",
2320
]
2421

2522
[project]
2623
name = "PyWavelets"
27-
version = "1.6.0rc1"
24+
version = "1.7.0.dev0"
2825
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
2926
# at that point, no longer include them in `py3.install_sources()`
3027
license = {file = "LICENSE"}

util/version_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import subprocess
44

55
MAJOR = 1
6-
MINOR = 6
6+
MINOR = 7
77
MICRO = 0
8-
ISRELEASED = True
8+
ISRELEASED = False
99
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1010

1111

0 commit comments

Comments
 (0)