Skip to content

Commit 9c6cd68

Browse files
Chris Holdgrafcholdgraf
authored andcommitted
updating to new syntax
1 parent 6d08d66 commit 9c6cd68

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
A Binder-compatible repo with an `environment.yml` file.
44

5-
[![Binder](http://mybinder.org/badge.svg)](http://beta.mybinder.org/v2/gh/binder-examples/conda-environment/master)
5+
[![Binder](http://mybinder.org/badge.svg)](http://beta.mybinder.org/v2/gh/binder-examples/conda_environment/v1.0?filepath=index.ipynb)
66

77
Access this Binder at the following URL:
88

9-
http://beta.mybinder.org/v2/gh/binder-examples/conda-environment/master
9+
http://beta.mybinder.org/v2/gh/binder-examples/conda_environment/v1.0?filepath=index.ipynb
1010

1111
# Notes
1212
The `environment.yml` file should list all Python libraries on which your notebooks

index.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"This notebook uses a Python 3.4 environment with a few libraries, including `dask`, all of which were specificied using a `conda` [environment.yml](../edit/environment.yml) file. To demo the environment, we'll show a simplified example of using `dask` to analyze time series data, adapted from Matthew Rocklin's excellent repo of [dask examples](https://github.com/blaze/dask-examples) — check out that repo for the full version (and many other examples)."
14+
"This notebook uses a Python environment with a few libraries, including `dask`, all of which were specificied using a `conda` [environment.yml](../edit/environment.yml) file. To demo the environment, we'll show a simplified example of using `dask` to analyze time series data, adapted from Matthew Rocklin's excellent repo of [dask examples](https://github.com/blaze/dask-examples) — check out that repo for the full version (and many other examples)."
1515
]
1616
},
1717
{
@@ -125,7 +125,7 @@
125125
}
126126
],
127127
"source": [
128-
"df.A.cumsum().resample('1w', how='mean').compute().plot();"
128+
"df.A.cumsum().resample('1w').mean().compute().plot();"
129129
]
130130
}
131131
],
@@ -145,9 +145,9 @@
145145
"name": "python",
146146
"nbconvert_exporter": "python",
147147
"pygments_lexer": "ipython3",
148-
"version": "3.4.3"
148+
"version": "3.6.1"
149149
}
150150
},
151151
"nbformat": 4,
152-
"nbformat_minor": 0
152+
"nbformat_minor": 2
153153
}

0 commit comments

Comments
 (0)