Skip to content

Commit

Permalink
Add latest tag in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Winter committed Jun 29, 2023
1 parent 74be8a2 commit e601dd5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ If going from a major release to another, (for example 6.X.X to 7.X.X) then foll

cd C:\iblrig
git fetch --tags
git checkout tags/7.3.0

git checkout tags/7.3.1

If you do not know the tag you want to update to, you can get the latest tag with:

git tag --sort=committerdate | Select-Object -Last 1

Where 7.X.X is the version you want to update to.
(`python setup_pybpod.py` is needed if there are updates to the task code, but this should only impact major releases)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ def softcode_handler(data):
bonsai.start_camera_setup()

for i in range(sph.NTRIALS): # Main loop

print(
're_reset', [("Serial1", re_reset)],
'show_stim', [("Serial1", bonsai_show_stim)],
'closed_loop', [("Serial1", bonsai_close_loop)],
)
tph.next_trial()
log.info(f"Starting trial: {i + 1}")
# =============================================================================
Expand Down

0 comments on commit e601dd5

Please sign in to comment.