Skip to content

Commit 4003404

Browse files
authored
Merge pull request #230 from NeuroML/experimental
To v1.0.6 & remove inspyred req
2 parents 63ec404 + 9718309 commit 4003404

File tree

8 files changed

+12
-13
lines changed

8 files changed

+12
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ jobs:
5151
- name: Install package
5252
run: |
5353
python -m pip install --upgrade pip
54+
55+
# Ensure very latest inspyred (not on pypi) is installed
56+
pip install git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
57+
5458
pip install -r requirements.txt
5559
pip install .
5660

docs/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ pylems
1212
graphviz
1313
argparse
1414
neuromllite
15-
neurotune
16-
git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
15+
neurotune>=0.2.6 # now manages the version of inspyred
1716
neuron
1817
pydata-sphinx-theme
1918
vispy

pyneuroml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22

3-
__version__ = "1.0.5"
3+
__version__ = "1.0.6"
44

55
JNEUROML_VERSION = "0.12.2"
66

pyneuroml/tune/NeuroMLTuner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This module provides the `run_optimisation` function that pyNeuroML users can
55
use to optimise their NeuroML models. It uses the evolutionary computation
66
framework provided by Neurotune, which is based on the Inspyred optimisation
7-
library's Evolutionary Computation class `inpsyred.ec.EvolutionaryComputation`:
7+
library's Evolutionary Computation class `inspyred.ec.EvolutionaryComputation`:
88
99
- https://neurotune.readthedocs.io/en/latest/index.html
1010
- https://github.com/aarongarrett/inspyred/

pyneuroml/tune/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""
2-
Package for tuning NeuroML based nodels.
2+
Package for tuning NeuroML based models.
33
44
This uses the neurotune package (https://neurotune.readthedocs.io/en/latest/)
5-
to provide a framework for tuning NeuroML models using the evolutionaly
5+
to provide a framework for tuning NeuroML models using the evolutional
66
computation algorithms from the inspyred
77
(https://github.com/aarongarrett/inspyred/) package.
88

requirements-development.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ git+https://github.com/NeuralEnsemble/libNeuroML.git@development#egg=libNeuroML
1212
git+https://github.com/LEMS/pylems.git@development#egg=pylems
1313

1414
pyelectro
15-
neurotune
16-
17-
git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
15+
neurotune>=0.2.6 # now manages the version of inspyred
1816

1917
pytest
2018
pytest-cov

requirements-experimental.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ git+https://github.com/NeuralEnsemble/libNeuroML.git@development#egg=libNeuroML
1212
git+https://github.com/LEMS/pylems.git@development#egg=pylems
1313

1414
pyelectro
15-
neurotune
15+
neurotune>=0.2.6 # now manages the version of inspyred
1616

17-
git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
1817

1918
pytest
2019
pytest-cov

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ git+https://github.com/NeuralEnsemble/libNeuroML.git@master#egg=libNeuroML
1111
git+https://github.com/LEMS/pylems.git@master#egg=pylems
1212

1313
pyelectro
14-
neurotune
14+
neurotune>=0.2.6 # now manages the version of inspyred
1515

16-
git+https://github.com/aarongarrett/inspyred.git@master#egg=inspyred
1716

1817
pytest
1918
pytest-cov

0 commit comments

Comments
 (0)