Skip to content

Commit 0cf53c0

Browse files
TravisBotTravisBot
authored andcommitted
Updated website (automated commit) – Monday, 02. April 2018 11:16AM
1 parent de06f26 commit 0cf53c0

31 files changed

+664
-633
lines changed

_sources/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ part of which is providing a Python kernel for Jupyter.
5858
Announcements
5959
=============
6060

61-
- **IPython 6.1**, and **IPython 5.4**: These two releases were made on May 31st
62-
2017.
61+
- **IPython 6.3**, and **IPython 5.6**: These two releases were made on April
62+
2nd 2018.
6363

6464
- **IPython 6.0**: This release, the first to require Python 3, integrates the
6565
Jedi library for completion. See the `release notes

_sources/news.rst.txt

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,36 @@
22
News
33
====
44

5+
IPython 6.3
6+
-----------
7+
8+
IPython 6.3 was release on April 2, 2018. This is primarily a bugfix release,
9+
with some new features.
10+
See the `release notes
11+
<https://ipython.readthedocs.io/en/stable/whatsnew/version6.html#ipython-6-3>`__
12+
13+
.. ::
14+
sha256
15+
938da96f2f5f50d82add1947958b7432e9f330cef7703210bffd1a783d7720ab dist/ipython-6.3.0-py3-none-any.whl
16+
c785ab502b1a63624baeb89fedb873a118d4da6c9a796ae06e4f4aaef74e9ea0 dist/ipython-6.3.0.tar.gz
17+
18+
IPython 5.6
19+
-----------
20+
21+
IPython 5.6 was release on April 2, 2018. This is primarily a bugfix release.
22+
See the `release notes
23+
<http://ipython.readthedocs.io/en/5.x/whatsnew/version5.html#ipython-5-6>`__
24+
25+
.. ::
26+
sha256
27+
c3efde0784b422538959a048d63a283f6a73d9cf5ec51b80600a8d382db0d59e dist/ipython-5.6.0-py2-none-any.whl
28+
d778329d0a12d084e08661ac147df99df8a64ab4400632a886449a9c444f2b6e dist/ipython-5.6.0-py3-none-any.whl
29+
8ba332d1ac80261e176e737e934fade9b252fc3adb32afc7252ccc9cb249e601 dist/ipython-5.6.0.tar.gz
30+
531
IPython 6.1
632
-----------
733

8-
IPython 5.4 was release on May 31, 2017. And include a number of new features.
34+
IPython 6.1 was release on May 31, 2017. And include a number of new features.
935
See the `Jupyter Blog
1036
<https://blog.jupyter.org/2017/05/31/release-of-ipython-5-4-6-1-and-rlipython-2/>`_
1137
and the `release notes

_static/basic.css

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -49,7 +49,7 @@ div.sphinxsidebarwrapper {
4949

5050
div.sphinxsidebar {
5151
float: left;
52-
width: 0px;
52+
width: 14em;
5353
margin-left: -100%;
5454
font-size: 90%;
5555
word-wrap: break-word;
@@ -82,9 +82,21 @@ div.sphinxsidebar input {
8282
}
8383

8484
div.sphinxsidebar #searchbox input[type="text"] {
85-
width: 170px;
85+
float: left;
86+
width: 80%;
87+
padding: 0.25em;
88+
box-sizing: border-box;
89+
}
90+
91+
div.sphinxsidebar #searchbox input[type="submit"] {
92+
float: left;
93+
width: 20%;
94+
border-left: none;
95+
padding: 0.25em;
96+
box-sizing: border-box;
8697
}
8798

99+
88100
img {
89101
border: 0;
90102
max-width: 100%;
@@ -199,6 +211,11 @@ table.modindextable td {
199211

200212
/* -- general body styles --------------------------------------------------- */
201213

214+
div.body {
215+
min-width: 450px;
216+
max-width: 800px;
217+
}
218+
202219
div.body p, div.body dd, div.body li, div.body blockquote {
203220
-moz-hyphens: auto;
204221
-ms-hyphens: auto;
@@ -332,6 +349,11 @@ table.docutils {
332349
border-collapse: collapse;
333350
}
334351

352+
table.align-center {
353+
margin-left: auto;
354+
margin-right: auto;
355+
}
356+
335357
table caption span.caption-number {
336358
font-style: italic;
337359
}

_static/doctools.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -204,7 +204,7 @@ var Documentation = {
204204
* see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
205205
*/
206206
fixFirefoxAnchorBug : function() {
207-
if (document.location.hash)
207+
if (document.location.hash && $.browser.mozilla)
208208
window.setTimeout(function() {
209209
document.location.href += '';
210210
}, 10);

_static/documentation_options.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var DOCUMENTATION_OPTIONS = {
2+
URL_ROOT: '',
3+
VERSION: '',
4+
LANGUAGE: 'None',
5+
COLLAPSE_INDEX: false,
6+
FILE_SUFFIX: '.html',
7+
HAS_SOURCE: true,
8+
SOURCELINK_SUFFIX: '.txt'
9+
};

0 commit comments

Comments
 (0)