File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 3
3
Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and
4
4
[ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
5
5
6
+ ## [ 0.3.2] - 2024-01-12
7
+ + Fix - ` probe_geometry ` bugfix for incorrect handling of probes with staggered electrode positions
8
+
6
9
## [ 0.3.1] - 2023-11-28
7
10
+ Update - Flowchart borders for consistency with other DataJoint Elements
8
11
+ Fix - ` dj.config() ` setup moved to ` tutorial_pipeline.py ` instead of ` __init__.py `
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ def build_electrode_layouts(
188
188
row_offset = np .zeros_like (x_coords )
189
189
else :
190
190
assert len (row_offset ) == row_count
191
- row_offset = np .tile (row_offset , col_count_per_shank )
191
+ row_offset = np .repeat (row_offset , col_count_per_shank )
192
192
x_coords = x_coords + row_offset
193
193
194
194
shank_cols = np .tile (range (col_count_per_shank ), row_count )
Original file line number Diff line number Diff line change 1
1
"""Package metadata."""
2
- __version__ = "0.3.1 "
2
+ __version__ = "0.3.2 "
You can’t perform that action at this time.
0 commit comments