Skip to content

Commit 589c2f2

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 407f302 + 7bdf594 commit 589c2f2

File tree

6 files changed

+24
-15
lines changed

6 files changed

+24
-15
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22
# ruff PyBispectra
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.8.1
4+
rev: v0.9.3
55
hooks:
66
- id: ruff
77
name: ruff lint pybispectra
@@ -10,7 +10,7 @@ repos:
1010

1111
# ruff examples
1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.8.1
13+
rev: v0.9.3
1414
hooks:
1515
- id: ruff
1616
name: ruff lint examples
@@ -19,7 +19,7 @@ repos:
1919

2020
# codespell
2121
- repo: https://github.com/codespell-project/codespell
22-
rev: v2.3.0
22+
rev: v2.4.0
2323
hooks:
2424
- id: codespell
2525
additional_dependencies:

changelog.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# PyBispectra Changelog
22

3-
## [Version 1.2.1dev](https://pybispectra.readthedocs.io/en/main/)
3+
## [Version 1.3dev](https://pybispectra.readthedocs.io/en/main/)
44

5-
## [Version 1.2.0](https://pybispectra.readthedocs.io/en/1.2.0/)
5+
## [Version 1.2](https://pybispectra.readthedocs.io/en/1.2.1/)
66

77
##### Enhancements
88
- Added general `Bispectrum` and `Threenorm` classes for computing with flexible kmn channel combinations.
@@ -19,7 +19,7 @@
1919
##### Documentation
2020
- Added a new example for computing the bispectrum and threenorm using the general classes.
2121

22-
## [Version 1.1.0](https://pybispectra.readthedocs.io/en/1.1.0/)
22+
## [Version 1.1](https://pybispectra.readthedocs.io/en/1.1.0/)
2323

2424
##### Enhancements
2525
- Reduced the memory requirement of bispectrum computations.
@@ -37,6 +37,6 @@
3737
- Added a new example for computing time delays on specific frequency bands.
3838

3939

40-
## [Version 1.0.0](https://pybispectra.readthedocs.io/en/1.0.0/)
40+
## [Version 1.0](https://pybispectra.readthedocs.io/en/1.0.0/)
4141

4242
- Initial release.

docs/source/_static/versions.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[
22
{
3-
"name": "1.2.1dev",
4-
"version": "1.2.1dev",
3+
"name": "1.3.0dev",
4+
"version": "1.3.0dev",
55
"url": "https://pybispectra.readthedocs.io/en/main/"
66
},
77
{
8-
"name": "1.2.0",
9-
"version": "1.2.0",
10-
"url": "https://pybispectra.readthedocs.io/en/1.2.0/"
8+
"name": "1.2.1",
9+
"version": "1.2.1",
10+
"url": "https://pybispectra.readthedocs.io/en/1.2.1/"
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, Thomas S. Binns"
1717
author = "Thomas S. Binns"
18-
release = "1.2.1dev"
18+
release = "1.3.0dev"
1919

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

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ dependencies:
88
- mne>1.6
99
- numba
1010
- numpy
11+
- scikit-learn
1112
- scipy

pyproject.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@ classifiers = [
99
"Operating System :: OS Independent",
1010
"Programming Language :: Python :: 3",
1111
]
12-
dependencies = ["joblib", "matplotlib", "mne>1.6", "numba", "numpy", "scipy"]
12+
dependencies = [
13+
"joblib",
14+
"matplotlib",
15+
"mne>1.6",
16+
"numba",
17+
"numpy",
18+
"scikit-learn",
19+
"scipy",
20+
]
1321
description = "A Python signal processing package for computing spectral-domain and time-domain interactions using the bispectrum."
1422
name = "pybispectra"
1523
readme = "README.md"
1624
requires-python = ">=3.10"
17-
version = "1.2.1dev"
25+
version = "1.3.0dev"
1826

1927
[project.optional-dependencies]
2028
dev = ["pybispectra[doc]", "pybispectra[lint]", "pybispectra[test]"]

0 commit comments

Comments
 (0)