Skip to content

Commit

Permalink
Merge pull request #2636 from h-mayorquin/modify_ci_to_work_with_new_dev
Browse files Browse the repository at this point in the history
Modify CI for new dev version criteria
  • Loading branch information
alejoe91 authored Mar 28, 2024
2 parents 3aa0ab6 + c9d7b67 commit 9704a8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build-test-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
- name: Force installation of latest dev from key-packages when running dev (not release)
run: |
source ${{ github.workspace }}/test_env/bin/activate
spikeinterface_is_dev_version=$(python -c "import importlib.metadata; version = importlib.metadata.version('spikeinterface'); print(version.endswith('dev0'))")
spikeinterface_is_dev_version=$(python -c "import spikeinterface; print(spikeinterface.DEV_MODE)")
if [ $spikeinterface_is_dev_version = "True" ]; then
echo "Running spikeinterface dev version"
pip install --no-cache-dir git+https://github.com/NeuralEnsemble/python-neo
Expand Down

0 comments on commit 9704a8f

Please sign in to comment.