File tree Expand file tree Collapse file tree 6 files changed +47
-3
lines changed Expand file tree Collapse file tree 6 files changed +47
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1616import jinja2 .filters
1717import 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?
2123try :
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__
7375release = version
7476
7577print (f"PyWavelets (VERSION { version } )" )
Original file line number Diff line number Diff line change 1+ .. include :: ../release/1.8.0-notes.rst
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11project (
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 : [
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ requires = [
2222
2323[project ]
2424name = " 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()`
2828license = {file = " LICENSE" }
@@ -94,3 +94,4 @@ Environments = [
9494 ' spin.cmds.meson.ipython' ,
9595 ' spin.cmds.meson.python' ,
9696]
97+ Documentation = [" spin.cmds.meson.docs" ]
You can’t perform that action at this time.
0 commit comments