##// END OF EJS Templates
release 4.0.1
Min RK -
Show More
@@ -1,125 +1,125 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 = 4
23 23 _version_minor = 0
24 _version_patch = 0
24 _version_patch = 1
25 25 # _version_extra = 'dev'
26 26 # _version_extra = 'rc1'
27 27 _version_extra = '' # Uncomment this for full releases
28 28
29 29 # release.codename is deprecated in 2.0, will be removed in 3.0
30 30 codename = ''
31 31
32 32 # Construct full version string from these.
33 33 _ver = [_version_major, _version_minor, _version_patch]
34 34
35 35 __version__ = '.'.join(map(str, _ver))
36 36 if _version_extra:
37 37 __version__ = __version__ + '-' + _version_extra
38 38
39 39 version = __version__ # backwards compatibility name
40 40 version_info = (_version_major, _version_minor, _version_patch, _version_extra)
41 41
42 42 # Change this when incrementing the kernel protocol version
43 43 kernel_protocol_version_info = (5, 0)
44 44 kernel_protocol_version = "%i.%i" % kernel_protocol_version_info
45 45
46 46 description = "IPython: Productive Interactive Computing"
47 47
48 48 long_description = \
49 49 """
50 50 IPython provides a rich toolkit to help you make the most out of using Python
51 51 interactively. Its main components are:
52 52
53 53 * A powerful interactive Python shell
54 54 * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter
55 55 notebooks and other interactive frontends.
56 56
57 57 The enhanced interactive Python shells have the following main features:
58 58
59 59 * Comprehensive object introspection.
60 60
61 61 * Input history, persistent across sessions.
62 62
63 63 * Caching of output results during a session with automatically generated
64 64 references.
65 65
66 66 * Extensible tab completion, with support by default for completion of python
67 67 variables and keywords, filenames and function keywords.
68 68
69 69 * Extensible system of 'magic' commands for controlling the environment and
70 70 performing many tasks related either to IPython or the operating system.
71 71
72 72 * A rich configuration system with easy switching between different setups
73 73 (simpler than changing $PYTHONSTARTUP environment variables every time).
74 74
75 75 * Session logging and reloading.
76 76
77 77 * Extensible syntax processing for special purpose situations.
78 78
79 79 * Access to the system shell with user-extensible alias system.
80 80
81 81 * Easily embeddable in other Python programs and GUIs.
82 82
83 83 * Integrated access to the pdb debugger and the Python profiler.
84 84
85 85 The latest development version is always available from IPython's `GitHub
86 86 site <http://github.com/ipython>`_.
87 87 """
88 88
89 89 license = 'BSD'
90 90
91 91 authors = {'Fernando' : ('Fernando Perez','fperez.net@gmail.com'),
92 92 'Janko' : ('Janko Hauser','jhauser@zscout.de'),
93 93 'Nathan' : ('Nathaniel Gray','n8gray@caltech.edu'),
94 94 'Ville' : ('Ville Vainio','vivainio@gmail.com'),
95 95 'Brian' : ('Brian E Granger', 'ellisonbg@gmail.com'),
96 96 'Min' : ('Min Ragan-Kelley', 'benjaminrk@gmail.com'),
97 97 'Thomas' : ('Thomas A. Kluyver', 'takowl@gmail.com'),
98 98 'Jorgen' : ('Jorgen Stenarson', 'jorgen.stenarson@bostream.nu'),
99 99 'Matthias' : ('Matthias Bussonnier', 'bussonniermatthias@gmail.com'),
100 100 }
101 101
102 102 author = 'The IPython Development Team'
103 103
104 104 author_email = 'ipython-dev@scipy.org'
105 105
106 106 url = 'http://ipython.org'
107 107
108 108 download_url = 'https://github.com/ipython/ipython/downloads'
109 109
110 110 platforms = ['Linux','Mac OSX','Windows XP/Vista/7/8']
111 111
112 112 keywords = ['Interactive','Interpreter','Shell','Parallel','Distributed',
113 113 'Web-based computing', 'Qt console', 'Embedding']
114 114
115 115 classifiers = [
116 116 'Framework :: IPython',
117 117 'Intended Audience :: Developers',
118 118 'Intended Audience :: Science/Research',
119 119 'License :: OSI Approved :: BSD License',
120 120 'Programming Language :: Python',
121 121 'Programming Language :: Python :: 2',
122 122 'Programming Language :: Python :: 2.7',
123 123 'Programming Language :: Python :: 3',
124 124 'Topic :: System :: Shells'
125 125 ]
@@ -1,46 +1,57 b''
1 1 ============
2 2 4.x Series
3 3 ============
4 4
5 IPython 4.0.1
6 =============
7
8 Released November, 2015
9
10 Fixes for:
11
12 - Installation on some systems
13 - Compatibility with CPython 3.4.4
14 - Compatibility with Qt5
15
5 16 IPython 4.0
6 17 ===========
7 18
8 19 Released August, 2015
9 20
10 21 IPython 4.0 is the first major release after the Big Split.
11 22 IPython no longer contains the notebook, qtconsole, etc. which have moved to
12 23 `jupyter <https://jupyter.readthedocs.org>`_.
13 24 IPython subprojects, such as `IPython.parallel <https://ipyparallel.readthedocs.org>`_ and `widgets <https://ipywidgets.readthedocs.org>`_ have moved to their own repos as well.
14 25
15 26 The following subpackages are deprecated:
16 27
17 28 - IPython.kernel (now jupyter_client and ipykernel)
18 29 - IPython.consoleapp (now jupyter_client.consoleapp)
19 30 - IPython.nbformat (now nbformat)
20 31 - IPython.nbconvert (now nbconvert)
21 32 - IPython.html (now notebook)
22 33 - IPython.parallel (now ipyparallel)
23 34 - IPython.utils.traitlets (now traitlets)
24 35 - IPython.config (now traitlets.config)
25 36 - IPython.qt (now qtconsole)
26 37 - IPython.terminal.console (now jupyter_console)
27 38
28 39 and a few other utilities.
29 40
30 41 Shims for the deprecated subpackages have been added,
31 42 so existing code should continue to work with a warning about the new home.
32 43
33 44 There are few changes to the code beyond the reorganization and some bugfixes.
34 45
35 46 IPython highlights:
36 47
37 48 - Public APIs for discovering IPython paths is moved from :mod:`IPython.utils.path` to :mod:`IPython.paths`.
38 49 The old function locations continue to work with deprecation warnings.
39 50 - Code raising ``DeprecationWarning``
40 51 entered by the user in an interactive session will now display the warning by
41 52 default. See :ghpull:`8480` an :ghissue:`8478`.
42 53 - The `--deep-reload` flag and the corresponding options to inject `dreload` or
43 54 `reload` into the interactive namespace have been deprecated, and will be
44 55 removed in future versions. You should now explicitly import `reload` from
45 56 `IPython.lib.deepreload` to use it.
46 57
General Comments 0
You need to be logged in to leave comments. Login now