Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/io-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,11 @@ jobs:

- name: Install git-annex
# this is the trick from the spikeinterface repo for getting git-annex to work with datalad
# see https://github.com/SpikeInterface/spikeinterface/pull/3877 for more info
shell: bash
run: |
pip install datalad-installer
wget https://downloads.kitenet.net/git-annex/linux/current/git-annex-standalone-amd64.tar.gz
mkdir /home/runner/work/installation
mv git-annex-standalone-amd64.tar.gz /home/runner/work/installation/
workdir=$(pwd)
cd /home/runner/work/installation
tar xvzf git-annex-standalone-amd64.tar.gz
echo "$(pwd)/git-annex.linux" >> $GITHUB_PATH
cd $workdir
datalad-installer --sudo ok git-annex --method datalad/packages
git config --global filter.annex.process "git-annex filter-process" # recommended for efficiency

- name: Configure git
Expand Down
2 changes: 1 addition & 1 deletion neo/rawio/intanrawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
_signal_buffer_dtype,
_spike_channel_dtype,
_event_channel_dtype,
)
)


class IntanRawIO(BaseRawIO):
Expand Down
Loading