Skip to content

Commit

Permalink
[MAINT] Update for new dev version (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns authored Sep 18, 2024
1 parent 3d0eb23 commit dc521db
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Parallel processing and [Numba](https://numba.pydata.org/) optimisation are impl

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

## Use:
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).
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).

## Citing:
If you use this toolbox in your work, please include the following citation:<br/>
Expand Down
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# PyBispectra Changelog

## [Version 1.2.1dev](https://pybispectra.readthedocs.io/en/main/)

## [Version 1.2.0](https://pybispectra.readthedocs.io/en/1.2.0/)

##### Enhancements
Expand Down
5 changes: 5 additions & 0 deletions docs/source/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[
{
"name": "1.2.1dev",
"version": "1.2.1dev",
"url": "https://pybispectra.readthedocs.io/en/main/"
},
{
"name": "1.2.0",
"version": "1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
project = "PyBispectra"
copyright = "2023, Thomas S. Binns"
author = "Thomas S. Binns"
release = "1.2.0"
release = "1.2.1dev"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description = "A Python signal processing package for computing spectral-domain
name = "pybispectra"
readme = "README.md"
requires-python = ">=3.10"
version = "1.2.0"
version = "1.2.1dev"

[project.optional-dependencies]
dev = ["pybispectra[doc]", "pybispectra[lint]", "pybispectra[test]"]
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Initialisation of the PyBispectra package."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .cfc import AAC, PAC, PPC
from .data import get_example_data_paths
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/cfc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tools for handling cross-frequency coupling analysis."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .aac import AAC
from .pac import PAC
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/data/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Storage and tools for handling data files."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .example_data import DATASETS, get_example_data_paths
2 changes: 1 addition & 1 deletion src/pybispectra/general/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Tools for handling general bispectrum and threenorm computations."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .general import Bispectrum, Threenorm
2 changes: 1 addition & 1 deletion src/pybispectra/tde/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Tools for handling time delay estimation analysis."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .tde import TDE
2 changes: 1 addition & 1 deletion src/pybispectra/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Helper tools for processing and storing results."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .ged import SpatioSpectralFilter
from .results import ResultsCFC, ResultsGeneral, ResultsTDE, ResultsWaveShape
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/waveshape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Tools for handling waveshape analysis."""

__version__ = "1.2.0"
__version__ = "1.2.1dev"

from .waveshape import WaveShape

0 comments on commit dc521db

Please sign in to comment.