Skip to content

Commit cf62299

Browse files
authored
Merge pull request #781 from rgommers/rel-180
REL: 1.8.0 release
2 parents 3f8fc43 + 8b4e03e commit cf62299

File tree

6 files changed

+47
-3
lines changed

6 files changed

+47
-3
lines changed

doc/release/1.8.0-notes.rst

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
==============================
2+
PyWavelets 1.8.0 Release Notes
3+
==============================
4+
5+
We are very pleased to announce the release of PyWavelets 1.8.0. This release
6+
is a minor update to 1.7.x. It adds support for free-threaded Python 3.13 on
7+
Windows. The supported Python, NumPy and Cython versions are unchanged from
8+
1.7.x.
9+
10+
Note that building from source with free-threaded CPython requires a recent
11+
development version of Cython (>=3.1.0a0).
12+
13+
14+
Authors
15+
=======
16+
17+
* Ralf Gommers
18+
* Marco Meyer-Conde +
19+
* Omer Sayli +
20+
21+
A total of 3 people contributed to this release.
22+
People with a "+" by their names contributed a patch for the first time.
23+
24+
25+
Issues closed for v1.8.0
26+
------------------------
27+
28+
* `#780 <https://github.com/PyWavelets/pywt/issues/780>`__: Pip install PyWavelets does not work with GIL disabled version...
29+
30+
31+
Pull requests for v1.8.0
32+
------------------------
33+
34+
* `#766 <https://github.com/PyWavelets/pywt/pull/766>`__: Bump actions/upload-artifact from 4.3.4 to 4.4.0 in the github-actions...
35+
* `#769 <https://github.com/PyWavelets/pywt/pull/769>`__: DOC: improve figures in \`demo/wp_scalogram.py\`
36+
* `#771 <https://github.com/PyWavelets/pywt/pull/771>`__: CI: build free-threaded Windows wheels
37+
* `#775 <https://github.com/PyWavelets/pywt/pull/775>`__: CI: fix Windows wheels, clean up cp313/cp313t build config
38+
* `#778 <https://github.com/PyWavelets/pywt/pull/778>`__: DOC: highlighted deprecations with backward compatibility information
39+
* `#779 <https://github.com/PyWavelets/pywt/pull/779>`__: Bump the github-actions group with 2 updates

doc/source/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
import jinja2.filters
1717
import numpy as np
1818

19+
import pywt
20+
1921
# FIXME: doctests need the str/repr formatting used in Numpy < 1.14.
2022
# Should this be removed or updated?
2123
try:
@@ -69,7 +71,7 @@
6971
# The default replacements for |version| and |release|, also used in various
7072
# other places throughout the built documents.
7173

72-
version = importlib.metadata.version('pywavelets')
74+
version = pywt.__version__
7375
release = version
7476

7577
print(f"PyWavelets (VERSION {version})")

doc/source/release.1.8.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. include:: ../release/1.8.0-notes.rst

doc/source/releasenotes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release Notes
44
.. toctree::
55
:maxdepth: 1
66

7+
release.1.8.0
78
release.1.7.0
89
release.1.6.0
910
release.1.5.0

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.8.0.dev0',
4+
version: '1.9.0.dev0',
55
license: 'MIT',
66
meson_version: '>= 1.1.0',
77
default_options: [

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requires = [
2222

2323
[project]
2424
name = "PyWavelets"
25-
version = "1.8.0.dev0"
25+
version = "1.9.0.dev0"
2626
# TODO: add `license-files` once PEP 639 is accepted (see meson-python#88)
2727
# at that point, no longer include them in `py3.install_sources()`
2828
license = {file = "LICENSE"}
@@ -94,3 +94,4 @@ Environments = [
9494
'spin.cmds.meson.ipython',
9595
'spin.cmds.meson.python',
9696
]
97+
Documentation = ["spin.cmds.meson.docs"]

0 commit comments

Comments
 (0)