Skip to content

Commit de49729

Browse files
committed
Merge branch 'dev_new_main' of https://github.com/ttngu207/element-array-ephys into dev_new-main-docs
2 parents 9056db8 + dc8bac1 commit de49729

26 files changed

+1090
-6430
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name: Test
22
on:
33
push:
4+
branches:
5+
- main
46
pull_request:
7+
branches:
8+
- main
59
workflow_dispatch:
610
jobs:
711
devcontainer-build:
@@ -31,4 +35,3 @@ jobs:
3135
run: |
3236
python_version=${{matrix.py_ver}}
3337
black element_array_ephys --check --verbose --target-version py${python_version//.}
34-

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ exclude: (^.github/|^docs/|^images/)
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.4.0
6+
rev: v4.5.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
@@ -16,7 +16,7 @@ repos:
1616

1717
# black
1818
- repo: https://github.com/psf/black
19-
rev: 22.12.0
19+
rev: 24.2.0
2020
hooks:
2121
- id: black
2222
- id: black-jupyter
@@ -25,15 +25,15 @@ repos:
2525

2626
# isort
2727
- repo: https://github.com/pycqa/isort
28-
rev: 5.11.2
28+
rev: 5.13.2
2929
hooks:
3030
- id: isort
3131
args: ["--profile", "black"]
3232
description: Sorts imports in an alphabetical order
3333

3434
# flake8
3535
- repo: https://github.com/pycqa/flake8
36-
rev: 4.0.1
36+
rev: 7.0.0
3737
hooks:
3838
- id: flake8
3939
args: # arguments to configure flake8

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
7+
## [1.0.0] - 2024-09-10
8+
9+
+ Update - No longer support multiple variation of ephys module, keep only `ephys_no_curation` module, renamed to `ephys`
10+
+ Update - Remove other ephys modules (e.g. `ephys_acute`, `ephys_chronic`) (moved to different branches)
11+
+ Update - Add support for `SpikeInterface`
12+
+ Update - Remove support for `ecephys_spike_sorting` (moved to a different branch)
13+
+ Update - Simplify the "activate" mechanism
14+
15+
## [0.4.0] - 2024-08-16
16+
17+
+ Add - support for SpikeInterface version >= 0.101.0 (updated API)
18+
+ Add - feature for memoization of spike sorting results (prevent duplicated runs)
19+
20+
621
## [0.3.5] - 2024-08-16
722

823
+ Fix - Improve `spikeglx` loader in extracting neuropixels probe type from the meta file

element_array_ephys/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from . import ephys_acute as ephys
1+
from . import ephys
2+
3+
ephys_no_curation = ephys # alias for backward compatibility

0 commit comments

Comments
 (0)