Skip to content

Commit 4475c1c

Browse files
authored
[MAINT] Prepare for v1.2.3 release (#109)
1 parent 75cf6d7 commit 4475c1c

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# PyBispectra Changelog
22

33
## [Version 1.3dev](https://pybispectra.readthedocs.io/en/main/)
4+
- No changes.
45

56

67
## [Version 1.2](https://pybispectra.readthedocs.io/en/1.2.2/)
@@ -12,6 +13,7 @@
1213
- Fixed error where the number of subplots exceeding the number of nodes would cause plotting to fail.
1314
- Fixed error where bandpass filter settings for the SSD method in `SpatioSpectralFilter` were not being applied correctly.
1415
- Fixed error where `indices` in `ResultsCFC`, `ResultsTDE`, and `ResultsGeneral` classes were not being mapped to results correctly.
16+
- Fixed error where NumPy integers and floats were not being recognised as valid types.
1517

1618
##### API
1719
- Changed the default value of `min_ratio` in `SpatioSpectralFilter.get_transformed_data()` from `1.0` to `-inf`.

docs/source/_static/versions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"url": "https://pybispectra.readthedocs.io/en/main/"
66
},
77
{
8-
"name": "1.2.2",
9-
"version": "1.2.2",
10-
"url": "https://pybispectra.readthedocs.io/en/1.2.2/"
8+
"name": "1.2.3",
9+
"version": "1.2.3",
10+
"url": "https://pybispectra.readthedocs.io/en/1.2.3/"
1111
},
1212
{
1313
"name": "1.1.0",

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project = "PyBispectra"
1616
copyright = "2023-2025, Thomas S. Binns"
1717
author = "Thomas S. Binns"
18-
release = "1.3.0dev"
18+
release = "1.2.3"
1919

2020
# -- General configuration ---------------------------------------------------
2121
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ description = "A Python signal processing package for computing spectral-domain
2222
name = "pybispectra"
2323
readme = "README.md"
2424
requires-python = ">=3.10"
25-
version = "1.3.0dev"
25+
version = "1.2.3"
2626

2727
[project.optional-dependencies]
2828
dev = ["pybispectra[doc]", "pybispectra[lint]", "pybispectra[test]"]

src/pybispectra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Initialisation of the PyBispectra package."""
22

3-
__version__ = "1.3.0+dev"
3+
__version__ = "1.2.3"
44

55
from .cfc import AAC, PAC, PPC
66
from .general import Bispectrum, Threenorm

0 commit comments

Comments
 (0)