Skip to content

Commit c61b733

Browse files
authored
Merge pull request #588 from MetaCell/release/0.8.1
Releasing/0.8.1 to development
2 parents cd42eaa + 4a148d0 commit c61b733

8 files changed

Lines changed: 9 additions & 8 deletions

File tree

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jedi==0.17.0
2323
Jinja2==2.11.2
2424
jsonpickle==2.1.0
2525
jsonschema==3.2.0
26-
jupyter_geppetto==1.1.1
26+
jupyter_geppetto==1.1.4
2727
jupyter-client==7.0.6
2828
jupyter-core==4.9.1
2929
jupyter-server==1.11.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setuptools.setup(
1717
name="netpyne_ui",
18-
version="0.8.0",
18+
version="0.8.1",
1919
url="https://github.com/MetaCell/NetPyNE-UI",
2020
author="MetaCell",
2121
author_email="info@metacell.us",

utilities/install.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ def main(netpyne_branch, workspace_branch, geppetto_branch=None, skipNpm=False,
136136
execute(cmd=['npm', 'ci'], cwd=os.path.join(DEPS_DIR, META_DIR, JUPYTER_DIR, 'js'))
137137
execute(cmd=['npm', 'run', 'build-dev' if development else 'build'],
138138
cwd=os.path.join(DEPS_DIR, META_DIR, JUPYTER_DIR, 'js'))
139-
139+
140+
execute(cmd=['jupyter', 'nbextension', 'uninstall', 'jupyter_geppetto'])
140141
execute(cmd=['jupyter', 'nbextension', 'install', '--py', '--symlink', '--sys-prefix', 'jupyter_geppetto'])
141142
execute(cmd=['jupyter', 'nbextension', 'enable', '--py', '--sys-prefix', 'jupyter_geppetto'])
142143
execute(cmd=['jupyter', 'nbextension', 'enable', '--py', '--sys-prefix', 'widgetsnbextension'])

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={logoNetpyne} />
2727
<Box m={1}>
2828
<Link variant="h5" style={{ display: 'block' }} href="https://github.com/MetaCell/NetPyNE-UI" target="_blank">
29-
NetPyNE-UI v0.8.0
29+
NetPyNE-UI v0.8.1
3030
</Link>
3131
<Link variant="h5" style={{ display: 'block' }} href="https://github.com/Neurosim-lab/netpyne" target="_blank">
3232
NetPyNE v1.0.2.1

webapp/dev_package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geppetto-netpyne",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Geppetto NetPyNE-UI frontend.",
55
"repository": "https://github.com/MetaCell/NetPyNE-UI",
66
"license": "MIT",

webapp/package.bak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geppetto-netpyne",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Geppetto NetPyNE-UI frontend.",
55
"repository": "https://github.com/MetaCell/NetPyNE-UI",
66
"license": "MIT",

webapp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "geppetto-netpyne",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Geppetto NetPyNE-UI frontend.",
55
"repository": "https://github.com/MetaCell/NetPyNE-UI",
66
"license": "MIT",

webapp/redux/middleware/middleware.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import * as Constants from '../../constants';
3535
import { ADD_EXPERIMENT, REMOVE_EXPERIMENT } from '../actions/experiments';
3636

3737

38-
const TIMEOUT = 10000;
38+
const TIMEOUT = 30000;
3939
const EXPERIMENT_POLL_INTERVAL = 5000;
4040

4141
const STABLE_EXPERIMENTS_STATES = new Set([

0 commit comments

Comments
 (0)