Skip to content

Commit 91ea4c1

Browse files
committedOct 13, 2020
Updated for Python 3.6
1 parent e27f5b4 commit 91ea4c1

File tree

2 files changed

+10
-26
lines changed

2 files changed

+10
-26
lines changed
 

‎00-Preface.ipynb

+4-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"metadata": {},
2828
"outputs": [],
2929
"source": [
30-
"from __future__ import division, print_function\n",
3130
"%matplotlib inline"
3231
]
3332
},
@@ -43,7 +42,7 @@
4342
" <style>\n",
4443
" .output_wrapper, .output {\n",
4544
" height:auto !important;\n",
46-
" max-height:100000px; \n",
45+
" max-height:100000px;\n",
4746
" }\n",
4847
" .output_scroll {\n",
4948
" box-shadow:none !important;\n",
@@ -576,7 +575,7 @@
576575
"cell_type": "markdown",
577576
"metadata": {},
578577
"source": [
579-
"This will only work if you are using Python 3.5+. This book requires 3.5 or later, so I will use it whenever I can. Note that the operator requires that both values are arrays. Hence, `x @ 3.` raises a ValueError whereas `np.dot(X, 3.)` works fine."
578+
"This will only work if you are using Python 3.5+. This book requires 3.6 or later, so I will use it whenever I can. Note that the operator requires that both values are arrays. Hence, `x @ 3.` raises a ValueError whereas `np.dot(X, 3.)` works fine."
580579
]
581580
},
582581
{
@@ -722,7 +721,7 @@
722721
{
723722
"data": {
724723
"text/plain": [
725-
"[<matplotlib.lines.Line2D at 0x1f04c819fc8>]"
724+
"[<matplotlib.lines.Line2D at 0x1d880f89dc8>]"
726725
]
727726
},
728727
"execution_count": 18,
@@ -974,7 +973,7 @@
974973
"name": "python",
975974
"nbconvert_exporter": "python",
976975
"pygments_lexer": "ipython3",
977-
"version": "3.7.6"
976+
"version": "3.7.4"
978977
},
979978
"nbdime-conflicts": {
980979
"local_diff": [

‎book_format.py

+6-21
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
for more information.
1414
"""
1515

16-
from __future__ import (absolute_import, division, print_function,
17-
unicode_literals)
18-
1916
from contextlib import contextmanager
2017
from IPython.core.display import HTML
2118
import json
@@ -62,23 +59,16 @@ def test_installation():
6259

6360

6461
v = matplotlib.__version__
65-
min_version = "1.5.0" # this is really old!!!
62+
min_version = "3.0" # this is really old!!!
6663
if LooseVersion(v) < LooseVersion(min_version):
6764
print("Minimum Matplotlib version supported is {}. "
6865
"Please install a more recent version.".format(min_version))
6966

70-
# require Python 2.7, or 3.5+
71-
67+
# require Python 3.6+
7268
import sys
7369
v = sys.version_info
74-
if v.major > 3:
75-
# I guess if we are this far in the future it'll work? Who knows.
76-
# I just don't want to start getting issue reports when Python goes
77-
# to 4.0
78-
return
79-
80-
if (v.major == 2 and v.minor != 7) or (v.major == 3 and v.minor < 5):
81-
print('You must use Python version 2.7 or 3.5+ for the notebooks to work correctly')
70+
if v.major < 3 or (v.major == 3 and v.minor < 6):
71+
print('You must use Python version 3.6 or later for the notebooks to work correctly')
8272

8373

8474
# need to add test for IPython. I think I want to be at 6, which also implies
@@ -97,11 +87,6 @@ def test_installation():
9787
import matplotlib.pyplot as plt
9888
import numpy as np
9989

100-
# version 1.4.3 of matplotlib has a bug that makes
101-
# it issue a spurious warning on every plot that
102-
# clutters the notebook output
103-
if matplotlib.__version__ == '1.4.3':
104-
warnings.simplefilter(action="ignore", category=FutureWarning)
10590

10691
try:
10792
matplotlib.style.use('default')
@@ -169,7 +154,7 @@ def set_style():
169154
plt.rcParams.update(style)
170155
except:
171156
pass
172-
np.set_printoptions(suppress=True, precision=3,
157+
np.set_printoptions(suppress=True, precision=3,
173158
threshold=10000., linewidth=70,
174159
formatter={'float':lambda x:' {:.3}'.format(x)})
175160

@@ -183,7 +168,7 @@ def set_style():
183168
<style>
184169
.output_wrapper, .output {
185170
height:auto !important;
186-
max-height:100000px;
171+
max-height:100000px;
187172
}
188173
.output_scroll {
189174
box-shadow:none !important;

0 commit comments

Comments
 (0)
Please sign in to comment.