Skip to content

Commit

Permalink
Merge pull request #71 from biosimulators/dev
Browse files Browse the repository at this point in the history
For 0.1.88
  • Loading branch information
luciansmith authored Jul 26, 2023
2 parents fd0b15b + 5683d17 commit 6b23323
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Install pip and setuptools
- name: Install pip
run: |
#python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install pip==23.0.0
python -m pip install pip==23.0.0
python -m pip --version
- name: Install Java # for pyNeuroML
uses: actions/setup-java@v2
Expand Down Expand Up @@ -163,7 +164,7 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 1
ref: deploy
branch: deploy

- name: Configure Git
run: |
Expand Down
2 changes: 1 addition & 1 deletion biosimulators_test_suite/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.87'
__version__ = '0.1.88'
7 changes: 6 additions & 1 deletion biosimulators_test_suite/test_case/sedml.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ def build_synthetic_archives(self, specifications, curated_archive, curated_arch
new_value=value,
)
)

for mod in [model_1, model_2]:
for change in mod.changes:
change.model = mod.id
n_children = {}
for child in node.getchildren():
_, _, _, child_target, _ = get_xml_node_namespace_tag_target(
Expand Down Expand Up @@ -448,6 +450,9 @@ def build_synthetic_archives(self, specifications, curated_archive, curated_arch
new_value=value,
)
)
for mod in [model_1, model_2]:
for change in mod.changes:
change.model = mod.id

n_children = {}
for child in node.getchildren():
Expand Down

0 comments on commit 6b23323

Please sign in to comment.