File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -201,6 +201,20 @@ replaced by ``nipy_spectral`` and ``nipy_spectral_r`` since matplotlib
201
201
raised a warning. As of matplotlib 2.0.0, using the old names raises a
202
202
deprecation warning. In the future, using the old names will raise an error.
203
203
204
+ Default install does not include test images
205
+ --------------------------------------------
206
+
207
+ To reduce the default size of wheels and source installs, the tests
208
+ and baseline images are no longer included by default.
209
+
210
+ To restore installing the tests and images have a `setup.cfg ` with ::
211
+
212
+ [packages]
213
+ tests = True
214
+ toolkit_tests = True
215
+
216
+ in the source directory at build/install time.
217
+
204
218
Changes in 1.5.3
205
219
================
206
220
Original file line number Diff line number Diff line change @@ -79,10 +79,15 @@ Alternatively, if you do ::
79
79
pip install -v ./
80
80
81
81
all of the files will be copied to the installation directory however,
82
- you will have to rerun this command every time the source is changed.
82
+ you will have to rerun this command every time the source is changed. Additionally you will
83
+ need to copy :file: `setup.cfg.template ` to :file: `setup.cfg ` and edit to contain ::
83
84
85
+ [test]
86
+ local_freetype = True
87
+ tests = True
84
88
85
- You can then run the tests to check your work environment is set up properly::
89
+ In either case you can then run the tests to check your work
90
+ environment is set up properly::
86
91
87
92
python tests.py
88
93
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ matplotlib source directory::
45
45
46
46
[test]
47
47
local_freetype = True
48
+ tests = True
48
49
49
50
or by setting the ``MPLLOCALFREETYPE `` environmental variable to any true
50
51
value.
You can’t perform that action at this time.
0 commit comments