Skip to content

Commit 3b244a7

Browse files
Merge pull request #637 from MetaCell/feature/636
Feature/636
2 parents 9ac2408 + 3a69eea commit 3b244a7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ netpyne==1.0.3
4747
NEURON==8.0.2
4848
numpy==1.18.5
4949
oauthlib==3.0.1
50+
optuna==3.0.5
5051
ordered-set==4.0.2
5152
pamela==1.0.0
5253
pandas==0.23.4

utilities/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,12 @@ def main(netpyne_branch, workspace_branch, geppetto_branch=None, skipNpm=False,
116116
execute(cmd=['pip', 'install', '-e', '.'], cwd=os.path.join(DEPS_DIR, META_DIR, JUPYTER_DIR))
117117
# installing core dependencies
118118
execute(cmd=['pip', 'install', '-e', '.'], cwd=ROOT_DIR)
119-
else:
120-
# install requirements
121119
if netpyne_branch and netpyne_branch != 'master':
122120
cprint("Installing netpyne")
123121
clone(repository=NETPYNE, branch_or_tag=netpyne_branch)
124122
execute(cmd=['pip', 'install', '-e', '.'], cwd=os.path.join(DEPS_DIR, NETPYNE_DIR))
123+
else:
124+
# install requirements
125125
cprint("Installing UI python package...")
126126
execute(cmd=['pip', 'install', '-e', '.', '--no-deps'], cwd=ROOT_DIR)
127127

0 commit comments

Comments
 (0)