-
Notifications
You must be signed in to change notification settings - Fork 26
/
CHANGES.html
431 lines (405 loc) · 19.9 KB
/
CHANGES.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>What’s new — Scipy lecture notes</title>
<link rel="stylesheet" href="_static/nature.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/gallery.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/copybutton.js"></script>
<link rel="author" title="About these documents" href="about.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/build/base-min.css">
<script type="text/javascript">
$(function () {
// Highlight the table of content as we scroll
sections = {},
i = 0,
url = document.URL.replace(/#.*$/, ""),
current_section = 0;
// Grab positions of our sections
$('.headerlink').each(function(){
sections[this.href.replace(url, '')] = $(this).offset().top - 50;
});
$(window).scroll(function(event) {
var pos = $(window).scrollTop();
// Highlight the current section
$('a.internal').parent().removeClass('active');
for(i in sections){
if(sections[i] > pos){
break;
};
if($('a.internal[href$="' + i + '"]').is(':visible')){
current_section = i;
};
}
$('a.internal[href$="' + current_section + '"]').parent().addClass('active');
$('a.internal[href$="' + current_section + '"]').parent().parent().parent().addClass('active');
$('a.internal[href$="' + current_section + '"]').parent().parent().parent().parent().parent().addClass('active');
});
});
</script>
</head><body>
<!-- Use the header to add javascript -->
<script type="text/javascript">
// Function to collapse the tip divs
function collapse_tip_div(obj){
// Update the representation on the tip div based on whether it
// has the 'collapsed' css class or not: we only want to
// collapse divs that are not already collapsed
if($(obj).hasClass("collapsed")) {
} else {
$(obj).find("p.summary").remove();
var content = $(obj).text();
var html = $(obj).html();
if(content.length > 40) {
if ($.browser.msie) {
// We start at '3' to avoid 'tip', as IE
// does not count whitespace
var content = content.substr(3, 50);
} else {
// We start at '5' to avoid 'tip '
var content = content.substr(5, 50);
}
}
$(obj).html('<p class="summary"><img src="_static/plus.png">' + content + '...</p>' + html);
}
}
</script>
<script type="text/javascript">
$(function () {
$(".tip")
.click(function(event){
$(this).toggleClass("collapsed");
// Change state of the global button
$('div.related li.transparent').removeClass('transparent')
$(this).find("p.summary").remove();
if($(this).hasClass("collapsed")) {
var content = $(this).text();
var html = $(this).html();
if(content.length > 40) {
if ($.browser.msie) {
// We start at '3' to avoid 'tip', as IE
// does not count whitespace
var content = content.substr(3, 50);
} else {
// We start at '5' to avoid 'tip '
var content = content.substr(5, 50);
}
}
$(this).html('<p class="summary"><img src="_static/plus.png">' + content + '...</p>' + html);
}
if (event.target.tagName.toLowerCase() != "a") {
return true; //Makes links clickable
}
});
});
</script>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="nav-item nav-item-0"><a href="index.html">Scipy lecture notes</a> »</li>
<!-- Insert a menu in the navigation bar -->
<li class="left">
<!-- On click toggle the 'tip' on or off-->
<a onclick="$('.tip').each(function (index, obj) {
collapse_tip_div(obj);
});
$('.tip').addClass('collapsed');
$('.left').addClass('transparent');">
<img src="_static/minus.png"
alt="Collapse to compact view" style="padding: 1ex;"/>
<span class="hiddenlink">Collapse document to compact view</span>
</a></li>
<li class="right edit_on_github"><a href="https://github.com/scipy-lectures/scipy-lecture-notes/edit/master/CHANGES.rst">Edit
<span class="tooltip">
Improve this page:<br/>Edit it on Github.
</span>
</a>
</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="what-s-new">
<h1>What’s new<a class="headerlink" href="#what-s-new" title="Permalink to this headline">¶</a></h1>
<div class="section" id="release-2022-1-august-2022">
<h2>Release 2022.1 (August 2022)<a class="headerlink" href="#release-2022-1-august-2022" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Replace scikit-learn housing example with California data (Marco Mangan)</li>
<li>Fix links and typos (Zachary Moon, Tim Gates, Marco Mangan, Gert-Ludwig Ingold)</li>
<li>Fix fftpack figure (Osayd Abdu)</li>
<li>Update software version (Pierre de Buyl)</li>
</ul>
</div>
<div class="section" id="release-2020-2-september-2020">
<h2>Release 2020.2 (September 2020)<a class="headerlink" href="#release-2020-2-september-2020" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Replace image i/o from scipy.misc by imageio (Pierre de Buyl)</li>
<li>Update information on dict ordering (Bharath Saiguhan)</li>
<li>Suppress warnings for mandelbrot example (Pierre de Buyl)</li>
<li>Update NumPy introduction and advanced usage for changes to NumPy: wording, bytes
representation, floating point argument to np.zeros (Ross Barnowski)</li>
<li>Fix links to NumPy documentation to use numpy.org (Ross Barnowski)</li>
<li>Update note on transposed arrays (Ross Barnowski with Eric Wieser)</li>
<li>Use generated figure file for lidar data processing (Lawrence Chan)</li>
<li>Update link from PyMC2 to PyMC3 (B. Hohl)</li>
<li>Fix transparent popup menu to have a background (Pierre de Buyl)</li>
</ul>
</div>
<div class="section" id="release-2020-1-march-2020">
<h2>Release 2020.1 (March 2020)<a class="headerlink" href="#release-2020-1-march-2020" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fix outdated URLs (Gert-Ludwig Ingold)</li>
<li>Update packages (Pierre de Buyl)</li>
<li>Remove Python 2 continous integration (Olav Vahtras - EuroSciPy 2019 sprint)</li>
<li>Fix chessboard size (Mark Setchell)</li>
<li>Add objectives and design choices (Gert-Ludwig Ingold and Pierre de Buyl)</li>
<li>Make the numpy advanced iterator example more elaborate (Sebastian Berg)</li>
<li>Use empty list instead of empty tuple to deactivate ticks (Tim Hoffmann)</li>
<li>Fix typos (Sander van Rijn, cydave, Michel Corne) and off by 2 errors
(Andreas Hilboll)</li>
<li>Improve readability of Polynomials example code (Michel Corne)</li>
<li>Replace suggestions for debugging environments (Gert-Ludwig Ingold)</li>
<li>Add section on Python 2 vs Python 3 (Pierre de Buyl)</li>
</ul>
</div>
<div class="section" id="release-2019-1-may-2019">
<h2>Release 2019.1 (May 2019)<a class="headerlink" href="#release-2019-1-may-2019" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Update matplotlib compatibility to version 2.2 (Mike Mueller, Joris Van den
Bossche, Pierre de Buyl)</li>
<li>Make C-API example cos_module_np Python 2/3 compatible (Michael Boyle)</li>
<li>Fix typos and outdated URLs (Dogacan Dugmeci, Matthieu Boileau, Stuart Geiger, Omar
Gutiérrez, Himanshu, Julian Hofer, Joseph Salmon, Manuel López-Ibáñez,
Nicola Masarone, michelemaroni89, Evgeny Pogrebnyak, tommyod)</li>
</ul>
</div>
<div class="section" id="release-2018-1-september-2018">
<h2>Release 2018.1 (September 2018)<a class="headerlink" href="#release-2018-1-september-2018" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Fix wordings, typos, colours (Pierre de Buyl, Greg Kiar, Olav Vahtras
Kristian Rother)</li>
<li>Fix interpolation example code (Scott Staniewicz)</li>
<li>Fix CSS for high density displays (Gaël Varoquaux)</li>
<li>Generate indexing figures with PyX (Gert Ingold)</li>
<li>Warn clearly against the use of Python 2 (Bruno Hanzen)</li>
<li>Update external links (Bruno Hanzen)</li>
<li>Update versions of dependencies: sphinx-gallery, pandas, statsmodels
(Gaël Varoquaux)</li>
</ul>
</div>
<div class="section" id="release-2017-1-october-2017">
<h2>Release 2017.1 (October 2017)<a class="headerlink" href="#release-2017-1-october-2017" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Update optimization chapter (Michael Hartmann, Gaël Varoquaux)</li>
<li>Update SymPy chapter (Vince Knight)</li>
<li>Update advanced NumPy (Bartosz Teleńczuk)</li>
<li>Update scikit-learn chapter (Gaël Varoquaux)</li>
<li>Update SciPy chapter (Gaël Varoquaux)</li>
<li>Make ‘>>>’ in the prompts unselectable (Pierre de Buyl)</li>
<li>Use common package requirements for pip and conda and improve the build
instructions (Gert-Ludwig Ingold, Vince Knight, Pierre de Buyl)</li>
<li>Set up Circle CI (Loïc Estève)</li>
<li>Improved support for Python 3 integer divisions and calls to print (Loïc
Estève, Gert-Ludwig Ingold, Pierre de Buyl, Gaël Varoquaux)</li>
<li>Change test runner to pytest (Pierre de Buyl)</li>
<li>Replace the plot directive by sphinx-gallery (Gert-Ludwig Ingold)</li>
</ul>
</div>
<div class="section" id="release-2016-1-september-2016">
<h2>Release 2016.1 (September 2016)<a class="headerlink" href="#release-2016-1-september-2016" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Rework of intro chapter (Gaël Varoquaux)</li>
<li>Integrate sphinx-gallery: examples are now Jupyter notebooks (Gaël
Varoquaux, Gert-Ludwig Ingold, Óscar Nájera)</li>
<li>Better Python 3 tests and support (Gert-Ludwig Ingold)</li>
<li>Adapt examples to Matplotlib 1.5 (Gaël Varoquaux)</li>
<li>Modernize numpy chapter (Bartosz Telenczuk)</li>
</ul>
</div>
<div class="section" id="release-2015-3-november-2015">
<h2>Release 2015.3 (November 2015)<a class="headerlink" href="#release-2015-3-november-2015" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Collapsed sidebar can now pop up for mid-sized display (Gaël Varoquaux)</li>
<li>Replaced pictures of Lena by racoon face (Thouis Jones)</li>
</ul>
</div>
<div class="section" id="release-2015-2-october-2015">
<h2>Release 2015.2 (October 2015)<a class="headerlink" href="#release-2015-2-october-2015" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Authors on cover ordered as in bibtex entry (Nicolas Rougier)</li>
<li>Better rendering on mobile (Gaël Varoquaux)</li>
<li>Fix restructured text markup errors (Olav Vahtras)</li>
</ul>
</div>
<div class="section" id="release-2015-1-september-2015">
<h2>Release 2015.1 (September 2015)<a class="headerlink" href="#release-2015-1-september-2015" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>New chapter on statistics with Python (Gaël Varoquaux)</li>
<li>Better layout in PDF (Gaël Varoquaux)</li>
<li>New HTML layout, simplified formatting, mobile-friendly and sidebar
(Gaël Varoquaux, Nelle Varoquaux)</li>
<li>Logos on the HTML front page and on the PDF cover (Nicolas Rougier)</li>
<li>Python 3 compatible code (Gaël Varoquaux, Olav Vahtras)</li>
<li>Code put up to date for more recent versions of project (Pierre de
Buyl, Emmanuelle Gouillart, Gert-Ludwig Ingold, Nicolas Pettiaux, Olav
Vahtras, Gaël Varoquaux, Nelle Varoquaux)</li>
<li>Matplotlib updated with removal of deprecated pylab interface (Nicolas
Rougier)</li>
</ul>
</div>
<div class="section" id="release-2013-2-21-august-2013">
<h2>Release 2013.2 (21 August 2013)<a class="headerlink" href="#release-2013-2-21-august-2013" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Numpy chapter simplified (Valentin Haenel)</li>
<li>New layout for the HTML rendering (Gaël Varoquaux)</li>
</ul>
</div>
<div class="section" id="release-2013-1-10-feb-2013">
<h2>Release 2013.1 (10 Feb 2013)<a class="headerlink" href="#release-2013-1-10-feb-2013" title="Permalink to this headline">¶</a></h2>
<ul class="simple">
<li>Improvements to the advanced image manipulation chapter (Emmanuelle Gouillart)</li>
<li>Upgrade of the introductory language chapter (Valentin Haenel)</li>
<li>Upgrade of the introductory numpy chapter (Valentin Haenel)</li>
<li>New advanced chapter on interfacing with C (Valentin Haenel)</li>
<li>Minor fixes and improvements in various places (Robert Gieseke, Ozan Çağlayan,
Sergio Oller, kikocorreo, Valentin Haenel)</li>
</ul>
</div>
<div class="section" id="release-2012-3-26-nov-2012">
<h2>Release 2012.3 (26 Nov 2012)<a class="headerlink" href="#release-2012-3-26-nov-2012" title="Permalink to this headline">¶</a></h2>
<p>This release integrates the changes written for the Euroscipy conference:</p>
<ul class="simple">
<li>Matplotlib chapter completely redone (Nicolas Rougier, Gaël Varoquaux)</li>
<li>New advanced chapter on mathematical optimization (Gaël Varoquaux)</li>
<li>Mayavi chapter redone (Gaël Varoquaux)</li>
<li>Front page layout slightly improved: folding TOC (Gaël Varoquaux)</li>
</ul>
</div>
<div class="section" id="release-2012-2-22-jun-2012">
<h2>Release 2012.2 (22 Jun 2012)<a class="headerlink" href="#release-2012-2-22-jun-2012" title="Permalink to this headline">¶</a></h2>
<p>Minor release with a few clean ups (Gael Varoquaux).</p>
</div>
<div class="section" id="release-2012-1-20-jun-2012">
<h2>Release 2012.1 (20 Jun 2012)<a class="headerlink" href="#release-2012-1-20-jun-2012" title="Permalink to this headline">¶</a></h2>
<p>This is a minor release with many clean ups. In particular, clean up of
the layout (Gael Varoquaux), shortening of the numpy chapters and
deduplications across the intro and advanced chapters (Gael Varoquaux)
and doctesting of all the code (Gael Varoquaux).</p>
</div>
<div class="section" id="release-2012-0-22-apr-2012">
<h2>Release 2012.0 (22 Apr 2012)<a class="headerlink" href="#release-2012-0-22-apr-2012" title="Permalink to this headline">¶</a></h2>
<p>This is a minor release with a few clean ups. In particular, clean up the
scikit-learn chapter (Lars Buitinck), more informative section titles
(Gael Varoquaux), and misc fixes (Valentin Haenel, Virgile Fritsch).</p>
</div>
<div class="section" id="release-2011-1-16-oct-2011">
<h2>Release 2011.1 (16 Oct 2011)<a class="headerlink" href="#release-2011-1-16-oct-2011" title="Permalink to this headline">¶</a></h2>
<p>This release is a reworked version of the Euroscipy 2011 tutorial. Layout
has been cleaned and optimized (Valentin Haenel and many others), the Traits
chapter has been merged in (Didrik Pinte)</p>
</div>
<div class="section" id="release-2011-1-sept-2011">
<h2>Release 2011 (1 Sept 2011)<a class="headerlink" href="#release-2011-1-sept-2011" title="Permalink to this headline">¶</a></h2>
<p>This release is used for the Euroscipy 2011 tutorial. The numpy
introductory chapter has been rewamped (Pauli Virtanen). The outline of
the introductory chapters has been simplified (Gaël Varoquaux). Advanced
chapters have been added: advanced Python constructs (Zbigniew
Jędrzejewski-Szmek), debugging code (Gaël Varoquaux), optimizing code
(Gaël Varoquaux), image processing (Emmanuelle Gouillart), scikit-learn
(Fabian Pedregosa).</p>
<p><div style="clear: both"></div></p>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">What’s new</a><ul>
<li><a class="reference internal" href="#release-2022-1-august-2022">Release 2022.1 (August 2022)</a></li>
<li><a class="reference internal" href="#release-2020-2-september-2020">Release 2020.2 (September 2020)</a></li>
<li><a class="reference internal" href="#release-2020-1-march-2020">Release 2020.1 (March 2020)</a></li>
<li><a class="reference internal" href="#release-2019-1-may-2019">Release 2019.1 (May 2019)</a></li>
<li><a class="reference internal" href="#release-2018-1-september-2018">Release 2018.1 (September 2018)</a></li>
<li><a class="reference internal" href="#release-2017-1-october-2017">Release 2017.1 (October 2017)</a></li>
<li><a class="reference internal" href="#release-2016-1-september-2016">Release 2016.1 (September 2016)</a></li>
<li><a class="reference internal" href="#release-2015-3-november-2015">Release 2015.3 (November 2015)</a></li>
<li><a class="reference internal" href="#release-2015-2-october-2015">Release 2015.2 (October 2015)</a></li>
<li><a class="reference internal" href="#release-2015-1-september-2015">Release 2015.1 (September 2015)</a></li>
<li><a class="reference internal" href="#release-2013-2-21-august-2013">Release 2013.2 (21 August 2013)</a></li>
<li><a class="reference internal" href="#release-2013-1-10-feb-2013">Release 2013.1 (10 Feb 2013)</a></li>
<li><a class="reference internal" href="#release-2012-3-26-nov-2012">Release 2012.3 (26 Nov 2012)</a></li>
<li><a class="reference internal" href="#release-2012-2-22-jun-2012">Release 2012.2 (22 Jun 2012)</a></li>
<li><a class="reference internal" href="#release-2012-1-20-jun-2012">Release 2012.1 (20 Jun 2012)</a></li>
<li><a class="reference internal" href="#release-2012-0-22-apr-2012">Release 2012.0 (22 Apr 2012)</a></li>
<li><a class="reference internal" href="#release-2011-1-16-oct-2011">Release 2011.1 (16 Oct 2011)</a></li>
<li><a class="reference internal" href="#release-2011-1-sept-2011">Release 2011 (1 Sept 2011)</a></li>
</ul>
</li>
</ul>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/CHANGES.rst.txt"
rel="nofollow">Show Source</a></li>
</ul>
</div>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="nav-item nav-item-0"><a href="index.html">Scipy lecture notes</a> »</li>
<!-- Insert a menu in the navigation bar -->
<li class="left">
<!-- On click toggle the 'tip' on or off-->
<a onclick="$('.tip').each(function (index, obj) {
collapse_tip_div(obj);
});
$('.tip').addClass('collapsed');
$('.left').addClass('transparent');">
<img src="_static/minus.png"
alt="Collapse to compact view" style="padding: 1ex;"/>
<span class="hiddenlink">Collapse document to compact view</span>
</a></li>
<li class="right edit_on_github"><a href="https://github.com/scipy-lectures/scipy-lecture-notes/edit/master/CHANGES.rst">Edit
<span class="tooltip">
Improve this page:<br/>Edit it on Github.
</span>
</a>
</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2012,2013,2015,2016,2017,2018,2019,2020,2021,2022.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.9.
</div>
</body>
</html>