Skip to content

Commit 73af815

Browse files
committed
Update versions
1 parent 3cf2dc4 commit 73af815

File tree

12 files changed

+18
-11
lines changed

12 files changed

+18
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Parallel processing and [Numba](https://numba.pydata.org/) optimisation are impl
88

99
## Installation & Requirements:
1010
Install the package into the desired environment using pip `pip install pybispectra`<br/>
11-
More information on the [installation](https://pybispectra.readthedocs.io/en/1.2.0/installation.html) page.
11+
More information on the [installation](https://pybispectra.readthedocs.io/en/main/installation.html) page.
1212

1313
## Use:
14-
To get started with the toolbox, check out the [documentation](https://pybispectra.readthedocs.io/en/1.2.0/) and [examples](https://pybispectra.readthedocs.io/en/1.2.0/examples.html).
14+
To get started with the toolbox, check out the [documentation](https://pybispectra.readthedocs.io/en/main/) and [examples](https://pybispectra.readthedocs.io/en/main/examples.html).
1515

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

changelog.md

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

3+
## [Version 1.2.1dev](https://pybispectra.readthedocs.io/en/main/)
4+
35
## [Version 1.2.0](https://pybispectra.readthedocs.io/en/1.2.0/)
46

57
##### Enhancements

docs/source/_static/versions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"name": "1.2.1dev",
4+
"version": "1.2.1dev",
5+
"url": "https://pybispectra.readthedocs.io/en/main/"
6+
},
27
{
38
"name": "1.2.0",
49
"version": "1.2.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, Thomas S. Binns"
1717
author = "Thomas S. Binns"
18-
release = "1.2.0"
18+
release = "1.2.1dev"
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
@@ -14,7 +14,7 @@ description = "A Python signal processing package for computing spectral-domain
1414
name = "pybispectra"
1515
readme = "README.md"
1616
requires-python = ">=3.10"
17-
version = "1.2.0"
17+
version = "1.2.1dev"
1818

1919
[project.optional-dependencies]
2020
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.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .cfc import AAC, PAC, PPC
66
from .data import get_example_data_paths

src/pybispectra/cfc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tools for handling cross-frequency coupling analysis."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .aac import AAC
66
from .pac import PAC

src/pybispectra/data/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Storage and tools for handling data files."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .example_data import DATASETS, get_example_data_paths

src/pybispectra/general/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Tools for handling general bispectrum and threenorm computations."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .general import Bispectrum, Threenorm

src/pybispectra/tde/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Tools for handling time delay estimation analysis."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .tde import TDE

src/pybispectra/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Helper tools for processing and storing results."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .ged import SpatioSpectralFilter
66
from .results import ResultsCFC, ResultsGeneral, ResultsTDE, ResultsWaveShape

src/pybispectra/waveshape/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Tools for handling waveshape analysis."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1dev"
44

55
from .waveshape import WaveShape

0 commit comments

Comments
 (0)