Skip to content

Commit

Permalink
Include install in test...
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Jun 26, 2024
1 parent 7312885 commit 917f3cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/non_omv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-12, macos-latest ]
python-version: [ 3.8, 3.9, "3.10" ]
python-version: [ 3.8, 3.9, "3.10", "3.11" ]
exclude:
- runs-on: macos-latest
python-version: "3.8"
Expand Down Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Test OpenWormReader with owmeta
run: |
pip install owmeta>=0.12.3
owm bundle remote --user add ow 'https://raw.githubusercontent.com/openworm/owmeta-bundles/master/index.json'
python -m c302.OpenWormReader
Expand Down
4 changes: 2 additions & 2 deletions c302/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,8 +623,8 @@ def generate(net_id,
info = "\n\nParameters and setting used to generate this network:\n\n"+\
" Data reader: %s\n" % data_reader+\
" c302 version: %s\n" % __version__+\
" owmeta version: %s\n" % ('<not installed>' if not owmeta_installed else owmeta_version) +\
" owmeta_core version: %s\n" % ('<not installed>' if not owmeta_installed else owc_version) +\
" owmeta version: %s\n" % ('- not installed -' if not owmeta_installed else owmeta_version) +\
" owmeta_core version: %s\n" % ('- not installed -' if not owmeta_installed else owc_version) +\
" Cells: %s\n" % (cells if cells is not None else "All cells")+\
" Cell stimulated: %s\n" % (cells_to_stimulate if cells_to_stimulate is not None else "All neurons")+\
" Connection: %s\n" % (conns_to_include if conns_to_include is not None else "All connections") + \
Expand Down

0 comments on commit 917f3cc

Please sign in to comment.