Skip to content

Commit ba1894b

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 7f2e3c8 + 97571da commit ba1894b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Analysis of phase-amplitude coupling, time delays, and non-sinusoidal waveshape
1111
## Installation & Requirements:
1212
Install the package into the desired environment using pip: `pip install pybispectra`<br/>
1313
or conda: `conda install -c conda-forge pybispectra`<br/>
14-
More information on the [installation](https://pybispectra.readthedocs.io/1.3/installation.html) page.
14+
More information on the [installation](https://pybispectra.readthedocs.io/latest/installation.html) page.
1515

1616
## Use:
17-
To get started with the toolbox, check out the [documentation](https://pybispectra.readthedocs.io/1.3/) and [examples](https://pybispectra.readthedocs.io/1.3/examples.html).
17+
To get started with the toolbox, check out the [documentation](https://pybispectra.readthedocs.io/latest/) and [examples](https://pybispectra.readthedocs.io/latest/examples.html).
1818

1919
For instance, given some epoched time series, `data`, phase-amplitude coupling can be computed as:
2020

@@ -29,7 +29,7 @@ pac_results.plot() # plot results
2929
```
3030

3131
## Contributing & Development:
32-
If you encounter issues with the package, want to suggest improvements, or have made any changes which you would like to see officially supported, please refer to the [development](https://pybispectra.readthedocs.io/1.3/development.html) page. A unit test suite is included and must be expanded where necessary to validate any changes.
32+
If you encounter issues with the package, want to suggest improvements, or have made any changes which you would like to see officially supported, please refer to the [development](https://pybispectra.readthedocs.io/latest/development.html) page. A unit test suite is included and must be expanded where necessary to validate any changes.
3333

3434
## Citing:
3535
If you use this toolbox in your work, please include the following citation:<br/>

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = "PyBispectra"
1717
copyright = "2023-2025, Thomas S. Binns"
1818
author = "Thomas S. Binns"
19-
release = "1.3.0"
19+
release = "1.3.1dev"
2020

2121
# -- General configuration ---------------------------------------------------
2222
# 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
@@ -16,7 +16,7 @@ dynamic = [
1616
] # check tools/hatch_build.py for details
1717
name = "pybispectra"
1818
readme = "README.md"
19-
version = "1.3.0"
19+
version = "1.3.1dev"
2020

2121
[project.optional-dependencies]
2222
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"
3+
__version__ = "1.3.1+dev"
44

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

0 commit comments

Comments
 (0)