Skip to content

Commit 672704a

Browse files
committed
make release-tag: Merge branch 'master' into stable
2 parents fe8cf83 + 5d4955b commit 672704a

25 files changed

+4982
-51
lines changed

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ${{ matrix.os }}
3030
strategy:
3131
matrix:
32-
python-version: [3.6, 3.7, 3.8]
32+
python-version: ['3.8']
3333
os: [ubuntu-20.04]
3434
steps:
3535
- uses: actions/checkout@v1
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ${{ matrix.os }}
4848
strategy:
4949
matrix:
50-
python-version: [3.6, 3.7, 3.8]
50+
python-version: ['3.8', '3.9', '3.10', '3.11']
5151
os: [ubuntu-20.04, macos-latest, windows-latest]
5252
steps:
5353
- uses: actions/checkout@v1
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: ${{ matrix.os }}
6969
strategy:
7070
matrix:
71-
python-version: [3.6, 3.7, 3.8]
71+
python-version: ['3.8', '3.9', '3.10', '3.11']
7272
os: [ubuntu-20.04, macos-latest]
7373
steps:
7474
- uses: actions/checkout@v1

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ you will need to pass the fixed hyperparameters specification as follows:
418418
from sigpro.contributing import make_primitive
419419

420420
make_primitive(
421-
'sigpro.aggragations.frequency.band.band_mean',
421+
'sigpro.aggregations.frequency.band.band_mean',
422422
fixed_hyperparameters={
423423
'min_frequency': {
424424
'type': 'float',

HISTORY.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# History
22

3+
## 0.2.0 - 2023-02-02
4+
5+
### Features
6+
* Demo Notebooks for Pipeline usage - [Issue #55](https://github.com/sintel-dev/SigPro/issues/55) by @andyx13
7+
* Added `contributing_primitive` and `basic_primitives` module to assist with new primitive creation/usage - [Issue #54](https://github.com/sintel-dev/SigPro/issues/54) by @andyx13
8+
* Incorrect classification for stft.json and stft_real.json - [Issue #53](https://github.com/sintel-dev/SigPro/issues/53) by @andyx13
9+
* Support for more complex pipeline architectures - [Issue #52](https://github.com/sintel-dev/SigPro/issues/52) by @andyx13
10+
* Update primitive interfaces - [Issue #51](https://github.com/sintel-dev/SigPro/issues/51) by @andyx13
11+
* Syntax for pipeline creation - [Issue #41](https://github.com/sintel-dev/SigPro/issues/41) by @andyx13
12+
* Load demo dataset at random index - [Issue #35](https://github.com/sintel-dev/SigPro/issues/35) by @andyx13
13+
14+
15+
## 0.1.2 - 2023-12-11
16+
17+
### Features
18+
* Python version update - [Issue #44](https://github.com/sintel-dev/SigPro/issues/44) by @andyx13
19+
* Add demo notebook and per-primitive documentation - [Issue #47](https://github.com/sintel-dev/SigPro/issues/47) by @andyx13
20+
21+
322
## 0.1.1 - 2023-04-06
423

524
### Features

0 commit comments

Comments
 (0)