Skip to content

pip install psyneulink from https://github.com/PrincetonUniversity/Ps… #182

pip install psyneulink from https://github.com/PrincetonUniversity/Ps…

pip install psyneulink from https://github.com/PrincetonUniversity/Ps… #182

Workflow file for this run

name: CI Test script
on:
push:
branches: [ main, development, experimental, test*, nml*, version* ]
pull_request:
branches: [ main, development, experimental, test*, nml*, version* ]
jobs:
checks:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
python-version: [ "3.12"]
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install HDF5 for pytables on macos-14/latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install hdf5
- name: Install graphviz
uses: ts-graphviz/setup-graphviz@v2
with:
# Skip to run brew update command on macOS.
macos-skip-brew-update: 'true' # default false
- name: Run test script
run: |
python -m pip install -U pip
# pip install psyneulink from https://github.com/PrincetonUniversity/PsyNeuLink, branch devel
pip install git+https://github.com/PrincetonUniversity/PsyNeuLink.git@devel
export NEURON_HOME=$pythonLocation
./test_all.sh
- name: Version info for installed packages
run: |
pip list