-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
584 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Version Check | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
checks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
cache-dependency-path: 'pyproject.toml' | ||
- name: Install dependencies | ||
run: | | ||
pip install --editable . | ||
pip install packaging | ||
- name: Fetch versions | ||
run: | | ||
git fetch origin --tags | ||
previous_version=$(git describe --tags --match="[0-9]*" origin/main) | ||
latest_version=$(pip show project_extraction | awk '/^Version: / {sub("^Version: ", ""); print}') | ||
echo "Version tag on main: $previous_version" | ||
echo "Version tag on this branch: $latest_version" | ||
echo "PREVIOUS_VERSION=$previous_version" >> $GITHUB_ENV | ||
echo "LATEST_VERSION=$latest_version" >> $GITHUB_ENV | ||
- name: Assert version | ||
run: | | ||
python <<EOP | ||
import sys; from packaging import version | ||
sys.exit(int(version.parse("$PREVIOUS_VERSION") >= version.parse("$LATEST_VERSION"))) | ||
EOP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Version Tag | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: 0 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
cache-dependency-path: 'pyproject.toml' | ||
- name: Install dependencies | ||
run: | | ||
pip install --editable . | ||
- name: Fetch version | ||
run: | | ||
latest_version=$(pip show project_extraction | awk '/^Version: / {sub("^Version: ", ""); print}') | ||
echo "LATEST_VERSION=$latest_version" >> $GITHUB_ENV | ||
- name: Create tag | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git tag -a "$LATEST_VERSION" HEAD -m "Version v$LATEST_VERSION" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
force: true | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
iblrig_custom_tasks/samuel_cuedBiasedChoiceWorld/task_validation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# check that samuel_cuedBiasedChoiceWorld runs as intended | ||
# 1. verify time delay between audio cue and stimOn is ~equal to the INTERACTIVE_DELAY specified | ||
# 2. verify that the readout from rotary encoder is uninterrupted? | ||
# 3. anything else? | ||
# 3. anything else? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
""" | ||
Custom behaviour extractor tasks for personal projects. | ||
The task class name(s) should be added to the | ||
NB: This may need changing in the future if one of these modules requires optional dependencies. | ||
""" | ||
from projects.neuromodulators import ChoiceWorldNeuromodulators | ||
from projects.samuel_cuedBiasedChoiceWorld import CuedBiasedTrials, CuedBiasedTrialsTimeline | ||
from projects.nate_optoBiasedChoiceWorld import OptoTrialsNidq, OptoTrialsBpod |
Oops, something went wrong.