Skip to content

Commit 7dc76e8

Browse files
authored
Merge pull request #225 from MilagrosMarin/main
Update: conda env file name and apply black formatting to ensure tests pass
2 parents 776aa93 + db99d0d commit 7dc76e8

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
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+
## [0.4.5] - 2025-09-17
7+
8+
+ Fix - Rename `env.yml` to `conda_env.yml` for consistency with other projects
9+
+ Update - Passing tests by blackifying previous updates
10+
611
## [0.4.4] - 2025-06-06
712

813
+ Update - Update params in test/tutorial
File renamed without changes.

element_array_ephys/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package metadata."""
22

3-
__version__ = "0.4.4"
3+
__version__ = "0.4.5"

notebooks/tutorial.ipynb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,9 @@
25272527
"metadata": {},
25282528
"outputs": [],
25292529
"source": [
2530-
"lfp_signal, timestamps,fs = (ephys.LFP & lfp_key).fetch1(\"lfp_mean\",\"lfp_time_stamps\",\"lfp_sampling_rate\")"
2530+
"lfp_signal, timestamps, fs = (ephys.LFP & lfp_key).fetch1(\n",
2531+
" \"lfp_mean\", \"lfp_time_stamps\", \"lfp_sampling_rate\"\n",
2532+
")"
25312533
]
25322534
},
25332535
{
@@ -2548,8 +2550,9 @@
25482550
],
25492551
"source": [
25502552
"from scipy import signal\n",
2553+
"\n",
25512554
"window_size = 2.0\n",
2552-
"overlap_size = 1.0 \n",
2555+
"overlap_size = 1.0\n",
25532556
"nperseg = int(window_size * fs)\n",
25542557
"noverlap = int(overlap_size * fs)\n",
25552558
"f, t, Sxx = signal.spectrogram(\n",

0 commit comments

Comments
 (0)