Skip to content

Commit 0f38170

Browse files
mrocklinMatthias Bussonnier
authored andcommitted
Add Dask (#239)
1 parent 18f7445 commit 0f38170

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

_sections/30-projects.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ These projects pledge to drop Python 2 support in or before 2020.
3232
- [![](assets/scipyshiny_small.png)SciPy](https://www.scipy.org/) <!-- url:https://github.com/scipy/scipy sg:5942 -->
3333
- [![](assets/sympy.png)SymPy](https://www.sympy.org/) <!-- url:https://github.com/sympy/sympy sg:5941 -->
3434
- [![](assets/jupyter.png)Jupyter notebook](https://jupyter.org) <!-- url:https://github.com/jupyter/notebook sg:5920 -->
35+
- [![](assets/dask.svg)Dask](https://www.dask.org) <!-- url:https://github.com/dask/dask sg:5123 -->
3536
- [![](assets/spyder.png)Spyder](https://www.spyder-ide.org) <!-- url:https://github.com/spyder-ide/spyder sg:4497 -->
3637
- [![](assets/pytest1.png)pytest](https://docs.pytest.org/en/latest) <!-- url:https://github.com/pytest-dev/pytest sg:4328 -->
3738
- [![](assets/tensorpack.png)Tensorpack](https://github.com/tensorpack/tensorpack) <!-- url:https://github.com/tensorpack/tensorpack sg:4289 -->

assets/dask.svg

Lines changed: 35 additions & 0 deletions
Loading

site.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@ $(document).ready(function (){
309309
{content: '2.x', start: '2018-02-14', end: '2019-12-31', py2:true},
310310
{content: '3.x', start: '2019-11-05', end: '2023-12-31', py2:false},
311311
]
312+
'Dask': [
313+
{content: '1', start: '2014-12-21', end: '2019-07-01', py2:true},
314+
{content: '2', start: '2019-11-30', end: '2024-11-30', py2:false},
315+
],
312316

313317
// for tests, rando example
314318
//'matplotlib':[
@@ -330,7 +334,7 @@ $(document).ready(function (){
330334
var ordered = {};
331335
Object.keys(data).sort(function (a, b) {
332336
if (a == 'CPython') return -1;
333-
if (b == 'CPython') return 1;
337+
if (b == 'CPython') return 1;
334338
return a.toLowerCase().localeCompare(b.toLowerCase());
335339
}).forEach(function(key) { ordered[key] = data[key] });
336340
data = ordered;

0 commit comments

Comments
 (0)