##// END OF EJS Templates
release 7.14.0
Matthias Bussonnier -
Show More
@@ -1,119 +1,119 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Release data for the IPython project."""
3 3
4 4 #-----------------------------------------------------------------------------
5 5 # Copyright (c) 2008, IPython Development Team.
6 6 # Copyright (c) 2001, Fernando Perez <fernando.perez@colorado.edu>
7 7 # Copyright (c) 2001, Janko Hauser <jhauser@zscout.de>
8 8 # Copyright (c) 2001, Nathaniel Gray <n8gray@caltech.edu>
9 9 #
10 10 # Distributed under the terms of the Modified BSD License.
11 11 #
12 12 # The full license is in the file COPYING.txt, distributed with this software.
13 13 #-----------------------------------------------------------------------------
14 14
15 15 # Name of the package for release purposes. This is the name which labels
16 16 # the tarballs and RPMs made by distutils, so it's best to lowercase it.
17 17 name = 'ipython'
18 18
19 19 # IPython version information. An empty _version_extra corresponds to a full
20 20 # release. 'dev' as a _version_extra string means this is a development
21 21 # version
22 22 _version_major = 7
23 _version_minor = 13
23 _version_minor = 14
24 24 _version_patch = 0
25 25 _version_extra = '.dev'
26 26 # _version_extra = 'b1'
27 # _version_extra = '' # Uncomment this for full releases
27 _version_extra = '' # Uncomment this for full releases
28 28
29 29 # Construct full version string from these.
30 30 _ver = [_version_major, _version_minor, _version_patch]
31 31
32 32 __version__ = '.'.join(map(str, _ver))
33 33 if _version_extra:
34 34 __version__ = __version__ + _version_extra
35 35
36 36 version = __version__ # backwards compatibility name
37 37 version_info = (_version_major, _version_minor, _version_patch, _version_extra)
38 38
39 39 # Change this when incrementing the kernel protocol version
40 40 kernel_protocol_version_info = (5, 0)
41 41 kernel_protocol_version = "%i.%i" % kernel_protocol_version_info
42 42
43 43 description = "IPython: Productive Interactive Computing"
44 44
45 45 long_description = \
46 46 """
47 47 IPython provides a rich toolkit to help you make the most out of using Python
48 48 interactively. Its main components are:
49 49
50 50 * A powerful interactive Python shell
51 51 * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
52 52 notebooks and other interactive frontends.
53 53
54 54 The enhanced interactive Python shells have the following main features:
55 55
56 56 * Comprehensive object introspection.
57 57
58 58 * Input history, persistent across sessions.
59 59
60 60 * Caching of output results during a session with automatically generated
61 61 references.
62 62
63 63 * Extensible tab completion, with support by default for completion of python
64 64 variables and keywords, filenames and function keywords.
65 65
66 66 * Extensible system of 'magic' commands for controlling the environment and
67 67 performing many tasks related either to IPython or the operating system.
68 68
69 69 * A rich configuration system with easy switching between different setups
70 70 (simpler than changing $PYTHONSTARTUP environment variables every time).
71 71
72 72 * Session logging and reloading.
73 73
74 74 * Extensible syntax processing for special purpose situations.
75 75
76 76 * Access to the system shell with user-extensible alias system.
77 77
78 78 * Easily embeddable in other Python programs and GUIs.
79 79
80 80 * Integrated access to the pdb debugger and the Python profiler.
81 81
82 82 The latest development version is always available from IPython's `GitHub
83 83 site <http://github.com/ipython>`_.
84 84 """
85 85
86 86 license = 'BSD'
87 87
88 88 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
89 89 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
90 90 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
91 91 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
92 92 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
93 93 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
94 94 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
95 95 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'),
96 96 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'),
97 97 }
98 98
99 99 author = 'The IPython Development Team'
100 100
101 101 author_email = 'ipython-dev@python.org'
102 102
103 103 url = 'https://ipython.org'
104 104
105 105
106 106 platforms = ['Linux','Mac OSX','Windows']
107 107
108 108 keywords = ['Interactive','Interpreter','Shell', 'Embedding']
109 109
110 110 classifiers = [
111 111 'Framework :: IPython',
112 112 'Intended Audience :: Developers',
113 113 'Intended Audience :: Science/Research',
114 114 'License :: OSI Approved :: BSD License',
115 115 'Programming Language :: Python',
116 116 'Programming Language :: Python :: 3',
117 117 'Programming Language :: Python :: 3 :: Only',
118 118 'Topic :: System :: Shells'
119 119 ]
@@ -1,461 +1,484 b''
1 1 Issues closed in the 7.x development cycle
2 2 ==========================================
3 3
4 Issues closed in 8.12
4 Issues closed in 7.14
5 5 ---------------------
6 6
7 GitHub stats for 2020/02/29 - 2020/05/01 (tag: 7.13.0)
8
9 These lists are automatically generated, and may be incomplete or contain duplicates.
10
11 We closed 0 issues and merged 30 pull requests.
12 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.14>`__
13
14 The following 10 authors contributed 47 commits.
15
16 * Eric Wieser
17 * foobarbyte
18 * Ian Castleden
19 * Itamar Turner-Trauring
20 * Lumir Balhar
21 * Markus Wageringel
22 * Matthias Bussonnier
23 * Matthieu Ancellin
24 * Quentin Peter
25 * Theo Ouzhinski
26
27 Issues closed in 7.13
28 ---------------------
7 29
8 30 GitHub stats for 2020/02/01 - 2020/02/28 (tag: 7.12.0)
9 31
10 32 These lists are automatically generated, and may be incomplete or contain duplicates.
11 33
12 34 We closed 1 issues and merged 24 pull requests.
13 35 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.13>`__
14 36
15 37 The following 12 authors contributed 108 commits.
16 38
17 39 * Alex Hall
18 40 * Augusto
19 41 * Coon, Ethan T
20 42 * Daniel Hahler
21 43 * Inception95
22 44 * Itamar Turner-Trauring
23 45 * Jonas Haag
24 46 * Jonathan Slenders
25 47 * linar-jether
26 48 * Matthias Bussonnier
27 49 * Nathan Goldbaum
28 50 * Terry Davis
29 51
52
30 53 Issues closed in 7.12
31 54 ---------------------
32 55
33 56 GitHub stats for 2020/01/01 - 2020/01/31 (tag: 7.11.1)
34 57
35 58 These lists are automatically generated, and may be incomplete or contain duplicates.
36 59
37 60 We closed 2 issues and merged 14 pull requests.
38 61 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.12>`__
39 62
40 63 The following 11 authors contributed 48 commits.
41 64
42 65 * Augusto
43 66 * Eric Wieser
44 67 * Jeff Potter
45 68 * Mark E. Haase
46 69 * Matthias Bussonnier
47 70 * ossdev07
48 71 * ras44
49 72 * takuya fujiwara
50 73 * Terry Davis
51 74 * Thomas A Caswell
52 75 * yangyang
53 76
54 77 Issues closed in 7.11
55 78 ---------------------
56 79
57 80 GitHub stats for 2019/12/01 - 2019/12/27 (tag: 7.10.1)
58 81
59 82 These lists are automatically generated, and may be incomplete or contain duplicates.
60 83
61 84 We closed 4 issues and merged 36 pull requests.
62 85 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.11>`__
63 86
64 87 The following 16 authors contributed 114 commits.
65 88
66 89 * Augusto
67 90 * Benjamin Ragan-Kelley
68 91 * Chemss Eddine Ben Hassine
69 92 * Danny Hermes
70 93 * Dominik Miedziński
71 94 * Jonathan Feinberg
72 95 * Jonathan Slenders
73 96 * Joseph Kahn
74 97 * kousik
75 98 * Kousik Mitra
76 99 * Marc Hernandez Cabot
77 100 * Matthias Bussonnier
78 101 * Naveen Honest Raj K
79 102 * Pratyay Pandey
80 103 * Quentin Peter
81 104 * takuya fujiwara
82 105
83 106
84 107 Issues closed in 7.10.2
85 108 -----------------------
86 109
87 110
88 111 GitHub stats for 2019/12/01 - 2019/12/14 (tag: 7.10.1)
89 112
90 113 These lists are automatically generated, and may be incomplete or contain duplicates.
91 114
92 115 We closed 3 issues and merged 10 pull requests.
93 116 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.2>`__
94 117
95 118 The following 3 authors contributed 11 commits.
96 119
97 120 * Jonathan Slenders
98 121 * Joseph Kahn
99 122 * Matthias Bussonnier
100 123
101 124 Issues closed in 7.10.1
102 125 -----------------------
103 126
104 127 GitHub stats for 2019/11/27 - 2019/12/01 (tag: 7.10.0)
105 128
106 129 These lists are automatically generated, and may be incomplete or contain duplicates.
107 130
108 131 We closed 5 issues and merged 7 pull requests.
109 132 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10.1>`__
110 133
111 134 The following 2 authors contributed 14 commits.
112 135
113 136 * Jonathan Slenders
114 137 * Matthias Bussonnier
115 138
116 139 Issues closed in 7.10
117 140 ---------------------
118 141
119 142 GitHub stats for 2019/10/25 - 2019/11/27 (tag: 7.9.0)
120 143
121 144 These lists are automatically generated, and may be incomplete or contain duplicates.
122 145
123 146 We closed 4 issues and merged 22 pull requests.
124 147 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.10>`__
125 148
126 149 The following 15 authors contributed 101 commits.
127 150
128 151 * anatoly techtonik
129 152 * Ben Lewis
130 153 * Benjamin Ragan-Kelley
131 154 * Gerrit Buss
132 155 * grey275
133 156 * Gökcen Eraslan
134 157 * Jonathan Slenders
135 158 * Joris Van den Bossche
136 159 * kousik
137 160 * Matthias Bussonnier
138 161 * Nicholas Bollweg
139 162 * Paul McCarthy
140 163 * Srinivas Reddy Thatiparthy
141 164 * Timo Kaufmann
142 165 * Tony Fast
143 166
144 167 Issues closed in 7.9
145 168 --------------------
146 169
147 170 GitHub stats for 2019/08/30 - 2019/10/25 (tag: 7.8.0)
148 171
149 172 These lists are automatically generated, and may be incomplete or contain duplicates.
150 173
151 174 We closed 1 issues and merged 9 pull requests.
152 175 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.9>`__
153 176
154 177 The following 8 authors contributed 20 commits.
155 178
156 179 * Benjamin Ragan-Kelley
157 180 * Hugo
158 181 * Matthias Bussonnier
159 182 * mfh92
160 183 * Mohammad Hossein Sekhavat
161 184 * Niclas
162 185 * Vidar Tonaas Fauske
163 186 * Георгий Фролов
164 187
165 188 Issues closed in 7.8
166 189 --------------------
167 190
168 191 GitHub stats for 2019/07/26 - 2019/08/30 (tag: 7.7.0)
169 192
170 193 These lists are automatically generated, and may be incomplete or contain duplicates.
171 194
172 195 We closed 1 issues and merged 4 pull requests.
173 196 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.8>`__
174 197
175 198 The following 5 authors contributed 27 commits.
176 199
177 200 * Dan Allan
178 201 * Matthias Bussonnier
179 202 * Min ho Kim
180 203 * Oscar Gustafsson
181 204 * Terry Davis
182 205
183 206 Issues closed in 7.7
184 207 --------------------
185 208
186 209 GitHub stats for 2019/07/03 - 2019/07/26 (tag: 7.6.1)
187 210
188 211 These lists are automatically generated, and may be incomplete or contain duplicates.
189 212
190 213 We closed 5 issues and merged 9 pull requests.
191 214 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.7>`__
192 215
193 216 The following 8 authors contributed 26 commits.
194 217
195 218 * Brandon T. Willard
196 219 * juanis2112
197 220 * lllf
198 221 * Matthias Bussonnier
199 222 * Min ho Kim
200 223 * Oriol (Prodesk)
201 224 * Po-Chuan Hsieh
202 225 * techassetskris
203 226
204 227 Issues closed in 7.6
205 228 --------------------
206 229
207 230 GitHub stats for 2019/04/24 - 2019/06/28 (tag: 7.5.0)
208 231
209 232 These lists are automatically generated, and may be incomplete or contain duplicates.
210 233
211 234 We closed 9 issues and merged 43 pull requests.
212 235 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.6>`__
213 236
214 237 The following 19 authors contributed 144 commits.
215 238
216 239 * Alok Singh
217 240 * Andreas
218 241 * Antony Lee
219 242 * Daniel Hahler
220 243 * Ed OBrien
221 244 * Kevin Sheppard
222 245 * Luciana da Costa Marques
223 246 * Maor Kleinberger
224 247 * Matthias Bussonnier
225 248 * Miro Hrončok
226 249 * Niclas
227 250 * Nikita Bezdolniy
228 251 * Oriol Abril
229 252 * Piers Titus van der Torren
230 253 * Pragnya Srinivasan
231 254 * Robin Gustafsson
232 255 * stonebig
233 256 * Thomas A Caswell
234 257 * zzzz-qq
235 258
236 259
237 260 Issues closed in 7.5
238 261 --------------------
239 262
240 263 GitHub stats for 2019/03/21 - 2019/04/24 (tag: 7.4.0)
241 264
242 265 These lists are automatically generated, and may be incomplete or contain duplicates.
243 266
244 267 We closed 2 issues and merged 9 pull requests.
245 268 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.5>`__
246 269
247 270 The following 7 authors contributed 28 commits.
248 271
249 272 * Akshay Paropkari
250 273 * Benjamin Ragan-Kelley
251 274 * Ivan Tham
252 275 * Matthias Bussonnier
253 276 * Nick Tallant
254 277 * Sebastian Witowski
255 278 * stef-ubuntu
256 279
257 280
258 281 Issues closed in 7.4
259 282 --------------------
260 283
261 284 GitHub stats for 2019/02/18 - 2019/03/21 (tag: 7.3.0)
262 285
263 286 These lists are automatically generated, and may be incomplete or contain duplicates.
264 287
265 288 We closed 9 issues and merged 20 pull requests.
266 289 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__
267 290
268 291 The following 23 authors contributed 69 commits.
269 292
270 293 * anatoly techtonik
271 294 * Benjamin Ragan-Kelley
272 295 * bnables
273 296 * Frédéric Chapoton
274 297 * Gabriel Potter
275 298 * Ian Bell
276 299 * Jake VanderPlas
277 300 * Jan S. (Milania1)
278 301 * Jesse Widner
279 302 * jsnydes
280 303 * Kyungdahm Yun
281 304 * Laurent Gautier
282 305 * Luciana da Costa Marques
283 306 * Matan Gover
284 307 * Matthias Bussonnier
285 308 * memeplex
286 309 * Mickaël Schoentgen
287 310 * Partha P. Mukherjee
288 311 * Philipp A
289 312 * Sanyam Agarwal
290 313 * Steve Nicholson
291 314 * Tony Fast
292 315 * Wouter Overmeire
293 316
294 317
295 318 Issues closed in 7.3
296 319 --------------------
297 320
298 321 GitHub stats for 2018/11/30 - 2019/02/18 (tag: 7.2.0)
299 322
300 323 These lists are automatically generated, and may be incomplete or contain duplicates.
301 324
302 325 We closed 4 issues and merged 20 pull requests.
303 326 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.3>`__
304 327
305 328 The following 17 authors contributed 99 commits.
306 329
307 330 * anatoly techtonik
308 331 * Benjamin Ragan-Kelley
309 332 * Gabriel Potter
310 333 * Ian Bell
311 334 * Jake VanderPlas
312 335 * Jan S. (Milania1)
313 336 * Jesse Widner
314 337 * Kyungdahm Yun
315 338 * Laurent Gautier
316 339 * Matthias Bussonnier
317 340 * memeplex
318 341 * Mickaël Schoentgen
319 342 * Partha P. Mukherjee
320 343 * Philipp A
321 344 * Sanyam Agarwal
322 345 * Steve Nicholson
323 346 * Tony Fast
324 347
325 348 Issues closed in 7.2
326 349 --------------------
327 350
328 351 GitHub stats for 2018/10/28 - 2018/11/29 (tag: 7.1.1)
329 352
330 353 These lists are automatically generated, and may be incomplete or contain duplicates.
331 354
332 355 We closed 2 issues and merged 18 pull requests.
333 356 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.2>`__
334 357
335 358 The following 16 authors contributed 95 commits.
336 359
337 360 * Antony Lee
338 361 * Benjamin Ragan-Kelley
339 362 * CarsonGSmith
340 363 * Chris Mentzel
341 364 * Christopher Brown
342 365 * Dan Allan
343 366 * Elliott Morgan Jobson
344 367 * is-this-valid
345 368 * kd2718
346 369 * Kevin Hess
347 370 * Martin Bergtholdt
348 371 * Matthias Bussonnier
349 372 * Nicholas Bollweg
350 373 * Pavel Karateev
351 374 * Philipp A
352 375 * Reuben Morais
353 376
354 377 Issues closed in 7.1
355 378 --------------------
356 379
357 380 GitHub stats for 2018/09/27 - 2018/10/27 (since tag: 7.0.1)
358 381
359 382 These lists are automatically generated, and may be incomplete or contain duplicates.
360 383
361 384 We closed 31 issues and merged 54 pull requests.
362 385 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.1>`__
363 386
364 387 The following 33 authors contributed 254 commits.
365 388
366 389 * ammarmallik
367 390 * Audrey Dutcher
368 391 * Bart Skowron
369 392 * Benjamin Ragan-Kelley
370 393 * BinaryCrochet
371 394 * Chris Barker
372 395 * Christopher Moura
373 396 * Dedipyaman Das
374 397 * Dominic Kuang
375 398 * Elyashiv
376 399 * Emil Hessman
377 400 * felixzhuologist
378 401 * hongshaoyang
379 402 * Hugo
380 403 * kd2718
381 404 * kory donati
382 405 * Kory Donati
383 406 * koryd
384 407 * luciana
385 408 * luz.paz
386 409 * Massimo Santini
387 410 * Matthias Bussonnier
388 411 * Matthias Geier
389 412 * meeseeksdev[bot]
390 413 * Michael Penkov
391 414 * Mukesh Bhandarkar
392 415 * Nguyen Duy Hai
393 416 * Roy Wellington Ⅳ
394 417 * Sha Liu
395 418 * Shao Yang
396 419 * Shashank Kumar
397 420 * Tony Fast
398 421 * wim glenn
399 422
400 423
401 424 Issues closed in 7.0
402 425 --------------------
403 426
404 427 GitHub stats for 2018/07/29 - 2018/09/27 (since tag: 6.5.0)
405 428
406 429 These lists are automatically generated, and may be incomplete or contain duplicates.
407 430
408 431 We closed 20 issues and merged 76 pull requests.
409 432 The full list can be seen `on GitHub <https://github.com/ipython/ipython/issues?q=milestone%3A7.0>`__
410 433
411 434 The following 49 authors contributed 471 commits.
412 435
413 436 * alphaCTzo7G
414 437 * Alyssa Whitwell
415 438 * Anatol Ulrich
416 439 * apunisal
417 440 * Benjamin Ragan-Kelley
418 441 * Chaz Reid
419 442 * Christoph
420 443 * Dale Jung
421 444 * Dave Hirschfeld
422 445 * dhirschf
423 446 * Doug Latornell
424 447 * Fernando Perez
425 448 * Fred Mitchell
426 449 * Gabriel Potter
427 450 * gpotter2
428 451 * Grant Nestor
429 452 * hongshaoyang
430 453 * Hugo
431 454 * J Forde
432 455 * Jonathan Slenders
433 456 * Jörg Dietrich
434 457 * Kyle Kelley
435 458 * luz.paz
436 459 * M Pacer
437 460 * Matthew R. Scott
438 461 * Matthew Seal
439 462 * Matthias Bussonnier
440 463 * meeseeksdev[bot]
441 464 * Michael Käufl
442 465 * Olesya Baranova
443 466 * oscar6echo
444 467 * Paul Ganssle
445 468 * Paul Ivanov
446 469 * Peter Parente
447 470 * prasanth
448 471 * Shailyn javier Ortiz jimenez
449 472 * Sourav Singh
450 473 * Srinivas Reddy Thatiparthy
451 474 * Steven Silvester
452 475 * stonebig
453 476 * Subhendu Ranjan Mishra
454 477 * Takafumi Arakaki
455 478 * Thomas A Caswell
456 479 * Thomas Kluyver
457 480 * Todd
458 481 * Wei Yen
459 482 * Yarko Tymciurak
460 483 * Yutao Yuan
461 484 * Zi Chong Kao
General Comments 0
You need to be logged in to leave comments. Login now