Skip to content

Commit

Permalink
Merge pull request #726 from rgommers/1.7.0-dev
Browse files Browse the repository at this point in the history
MAINT: set version to 1.7.0.dev0
  • Loading branch information
rgommers committed Mar 14, 2024
2 parents 3606379 + 84a6f7c commit 622bcd5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion meson.build
@@ -1,7 +1,7 @@
project(
'PyWavelets',
'c', 'cython',
version: '1.6.0rc1',
version: '1.7.0.dev0',
license: 'MIT',
meson_version: '>= 1.1.0',
default_options: [
Expand Down
9 changes: 3 additions & 6 deletions pyproject.toml
Expand Up @@ -8,23 +8,20 @@
build-backend = "mesonpy"
requires = [
"meson-python>=0.15.0",
# The upper bound on Cython is pre-emptive. The conditional compilation
# with IF we use in Cython code is deprecated and will be removed from
# Cython at some point.
"Cython>=3.0.4,<3.1",
"Cython>=3.0.4",

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

[project]
name = "PyWavelets"
version = "1.6.0rc1"
version = "1.7.0.dev0"
# 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
4 changes: 2 additions & 2 deletions util/version_utils.py
Expand Up @@ -3,9 +3,9 @@
import subprocess

MAJOR = 1
MINOR = 6
MINOR = 7
MICRO = 0
ISRELEASED = True
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)


Expand Down

0 comments on commit 622bcd5

Please sign in to comment.