Skip to content

Commit

Permalink
Merge pull request #527 from ModECI/development
Browse files Browse the repository at this point in the history
ONNX updates
  • Loading branch information
pgleeson authored Apr 29, 2024
2 parents ca4843a + 9af8aa7 commit 5fb8305
Show file tree
Hide file tree
Showing 113 changed files with 2,216 additions and 2,408 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
with:
extra_args: --hook-stage manual --all-files

Expand All @@ -27,8 +27,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.10", "3.11"]
python-version: [ "3.9", "3.10", "3.11"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- runs-on: macos-latest
python-version: "3.9"

steps:
- uses: actions/checkout@v4
Expand All @@ -49,6 +52,11 @@ jobs:
#- name: Install specific PsyNeuLink branch
# run: python -m pip install git+https://github.com/ModECI/PsyNeuLink@devel

- name: Install HDF5 for pytables on macos-14/latest
if: ${{ matrix.runs-on == 'macos-latest' }}
run: |
brew install hdf5
- name: Install core package
run: python -m pip install .[dev]

Expand All @@ -69,7 +77,10 @@ jobs:
pip list
- name: Install graphviz
uses: ts-graphviz/setup-graphviz@v1
uses: ts-graphviz/setup-graphviz@v2
with:
# Skip to run brew update command on macOS.
macos-skip-brew-update: 'true' # default false

- name: Test interface ACT-R
run: |
Expand All @@ -85,7 +96,6 @@ jobs:
python -m pytest -v -m "neuroml" tests/
- name: Test interface TensorFlow
if: ${{ matrix.python-version != '3.11'}}
run: |
python -m pip install .[tensorflow]
dot -V
Expand Down Expand Up @@ -119,7 +129,7 @@ jobs:
- name: Build sdist and wheel
run: pipx run --spec build pyproject-build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -308,3 +308,5 @@ examples/TensorFlow/Keras/keras_to_MDF
/examples/TensorFlow/Keras/MNIST/keras_to_MDF.1
/examples/TensorFlow/Keras/IRIS/keras_to_MDF.1
/checkout_pngs.sh
/examples/TensorFlow/Keras/IRIS/keras_model_on_iris.keras
/examples/TensorFlow/Keras/MNIST/kr_N_model.keras
42 changes: 21 additions & 21 deletions docs/MDF_function_specifications.json

Large diffs are not rendered by default.

Loading

0 comments on commit 5fb8305

Please sign in to comment.