Skip to content

Use latest nmllite etc #448

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
- name: List packages so far
run: |
pip list
env

- name: Run tests
run: |
Expand Down
7 changes: 4 additions & 3 deletions pyneuroml/neuron/analysis/HHanalyse.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
import re
import subprocess
import sys
import typing
from typing import List as typing_List
from typing import Optional as typing_Optional
from math import log

import matplotlib.pyplot as pylab
Expand Down Expand Up @@ -138,7 +139,7 @@ def remove_comments(txt):
return clear_txt


def get_states(txt: str) -> typing.List[str]:
def get_states(txt: str) -> typing_List[str]:
"""Get list of states from mod file text.

:param txt: mod file text
Expand All @@ -158,7 +159,7 @@ def get_states(txt: str) -> typing.List[str]:
return state_list


def get_suffix(txt: str) -> typing.Optional[str]:
def get_suffix(txt: str) -> typing_Optional[str]:
"""Get suffix mod file text

:param txt: mod file text
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ classifiers=
install_requires =
pylems>=0.6.8
airspeed>=0.5.5
neuromllite>=0.6.0
libNeuroML>=0.6.5
neuromllite>=0.6.1
libNeuroML>=0.6.7
matplotlib
matplotlib-scalebar
progressbar2
Expand Down
Loading