Skip to content

Commit 6483aa2

Browse files
authored
REL: 1.9.0 release (#817)
* DOC: add release notes for 1.9.0 * REL: set version to 1.9.0 * REL: set version to 1.10.0.dev0
2 parents ee0e24b + c4b08ba commit 6483aa2

File tree

5 files changed

+62
-2
lines changed

5 files changed

+62
-2
lines changed

doc/release/1.9.0-notes.rst

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
==============================
2+
PyWavelets 1.9.0 Release Notes
3+
==============================
4+
5+
We are very pleased to announce the release of PyWavelets 1.9.0. This release
6+
contains a fix for a long-standing problem with ``pywt.cwt``, adding a
7+
``precision`` keyword and increasing the default precision used.
8+
9+
This release makes a number of changes to the versions of dependencies that are
10+
supported:
11+
12+
- Support for Python 3.14 is added, and support for Python 3.10 dropped,
13+
- The minimum supported NumPy version is now 1.25.0,
14+
- The optional dependency on SciPy has been removed,
15+
16+
17+
Authors
18+
=======
19+
20+
* Evgeni Burovski
21+
* gabalafou +
22+
* Ralf Gommers
23+
* Agriya Khetarpal
24+
* John Muradeli +
25+
26+
A total of 7 people contributed to this release.
27+
People with a "+" by their names contributed a patch for the first time.
28+
This list of names is automatically generated, and may not be fully complete.
29+
30+
31+
Issues closed for v1.9.0
32+
------------------------
33+
34+
* `#531 <https://github.com/PyWavelets/pywt/issues/531>`__: precision of CWT
35+
* `#784 <https://github.com/PyWavelets/pywt/issues/784>`__: Spikes in wavelet after cwt
36+
* `#799 <https://github.com/PyWavelets/pywt/issues/799>`__: Wavelet name typo in documentation
37+
38+
39+
Pull requests for v1.9.0
40+
------------------------
41+
42+
* `#570 <https://github.com/PyWavelets/pywt/pull/570>`__: ENH: allow user to set \`precision\` in CWT, increase default...
43+
* `#741 <https://github.com/PyWavelets/pywt/pull/741>`__: DOC: Add interactive notebooks to pages in the "Usage Examples"...
44+
* `#772 <https://github.com/PyWavelets/pywt/pull/772>`__: MAINT: update handling of license files to use PEP 639
45+
* `#788 <https://github.com/PyWavelets/pywt/pull/788>`__: CI: Build Linux AArch64 wheels natively, and add Arm runners...
46+
* `#789 <https://github.com/PyWavelets/pywt/pull/789>`__: Bump the github-actions group with 2 updates
47+
* `#791 <https://github.com/PyWavelets/pywt/pull/791>`__: MAINT: remove optional dependence on SciPy for FFT operations
48+
* `#793 <https://github.com/PyWavelets/pywt/pull/793>`__: Bump the github-actions group with 2 updates
49+
* `#794 <https://github.com/PyWavelets/pywt/pull/794>`__: MAINT: bump minimum Python version to 3.10 and NumPy to 1.25
50+
* `#802 <https://github.com/PyWavelets/pywt/pull/802>`__: \`cwt\`: log \`scales\` in docstring example
51+
* `#803 <https://github.com/PyWavelets/pywt/pull/803>`__: Bump the github-actions group with 3 updates
52+
* `#805 <https://github.com/PyWavelets/pywt/pull/805>`__: MAINT: require scipy_doctest>=1.8.0
53+
* `#810 <https://github.com/PyWavelets/pywt/pull/810>`__: BLD/CI: Use cibuildwheel v3
54+
* `#811 <https://github.com/PyWavelets/pywt/pull/811>`__: CI: add cp314/cp314t wheel builds; improve cp313t builds
55+
* `#812 <https://github.com/PyWavelets/pywt/pull/812>`__: DOC: fix typo in a wavelet name
56+
* `#813 <https://github.com/PyWavelets/pywt/pull/813>`__: CI: clean up free-threading job, and pin actions in tests.yml
57+
* `#814 <https://github.com/PyWavelets/pywt/pull/814>`__: Bump the github-actions group with 2 updates
58+
* `#815 <https://github.com/PyWavelets/pywt/pull/815>`__: CI: test Python 3.14 and 3.14t in regular CI jobs

doc/source/release.1.9.0.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.. include:: ../release/1.9.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.9.0
78
release.1.8.0
89
release.1.7.0
910
release.1.6.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.9.0.dev0',
4+
version: '1.10.0.dev0',
55
license: 'MIT',
66
meson_version: '>= 1.1.0',
77
default_options: [

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ requires = [
2323

2424
[project]
2525
name = "PyWavelets"
26-
version = "1.9.0.dev0"
26+
version = "1.10.0.dev0"
2727
license = "MIT and BSD-3-Clause"
2828
license-files = [
2929
"LICENSE",

0 commit comments

Comments
 (0)