Skip to content

Commit 44c4e9c

Browse files
committed
Release 0.7.0 version adaptations
1 parent 91edecc commit 44c4e9c

8 files changed

Lines changed: 2787 additions & 3794 deletions

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ node_modules
1414
webapp/build
1515
webapp/geppetto-client
1616
workspace
17+
netpyne_workspace
1718
.idea
1819
k8s
1920
/src

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ webapp/node_modules
1414
webapp/geppetto-client
1515
webapp/build
1616
workspace
17+
netpyne_workspace
1718
tests/frontend/e2e/node_modules
1819
Dockerfile_mini
1920
npm*

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ multimethod==1.3
4343
nbconvert==5.6.1
4444
nbformat==5.0.6
4545
neuromllite==0.1.9
46+
netpyne==1.0.0
4647
NEURON==7.8.1.1
4748
numpy==1.18.5
4849
oauthlib==3.0.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setuptools.setup(
1717
name="netpyne_ui",
18-
version="0.6.0",
18+
version="0.7.0",
1919
url="https://github.com/MetaCell/NetPyNE-UI",
2020
author="MetaCell",
2121
author_email="info@metacell.us",
@@ -39,6 +39,6 @@
3939
install_requires=[
4040
'jupyter-geppetto>=1.0.0',
4141
'NEURON>=7.8.0'
42-
'netpyne==0.9.6'
42+
'netpyne>=1.0.0'
4343
],
4444
)

utilities/install.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,15 @@ def main(netpyne_branch, workspace_branch, pygeppetto_branch=None, jupyter_geppe
7979

8080
if not os.path.exists(DEPS_DIR):
8181
os.mkdir(DEPS_DIR)
82-
clone(repository=NETPYNE, branch_or_tag=netpyne_branch)
83-
execute(cmd=['pip', 'install', '-e', '.'], cwd=os.path.join(DEPS_DIR, NETPYNE_DIR))
82+
8483

8584
if development:
8685
os.chdir(DEPS_DIR)
86+
87+
cprint("Installing netpyne")
88+
clone(repository=NETPYNE, branch_or_tag=netpyne_branch)
89+
execute(cmd=['pip', 'install', '-e', '.'], cwd=os.path.join(DEPS_DIR, NETPYNE_DIR))
90+
8791
# install pygeppetto
8892
cprint("Installing pygeppetto")
8993
clone(repository=PYGEPPETTO,

webapp/components/general/Dialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const AboutContent = withStyles(styles)(({ classes }) => (
2626
<img width="250" src={logo_netpyne} />
2727
<Box m={1}>
2828
<Typography variant="h5" style={{ color: secondaryColor }}>
29-
NetPyNE-UI v0.6.0
29+
NetPyNE-UI v0.7.0
3030
</Typography>
3131
</Box>
3232

webapp/package-lock.json

Lines changed: 2774 additions & 3788 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@
7474
]
7575
}
7676
}
77-
}
77+
}

0 commit comments

Comments
 (0)