-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Api doc backport no imag build #7779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
e83e108
e2e7235
5ca204d
ca6bb75
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Update to include details about how to re-enable.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -201,6 +201,20 @@ replaced by ``nipy_spectral`` and ``nipy_spectral_r`` since matplotlib | |
raised a warning. As of matplotlib 2.0.0, using the old names raises a | ||
deprecation warning. In the future, using the old names will raise an error. | ||
|
||
Default install does not include test images | ||
-------------------------------------------- | ||
|
||
To reduce the default size of wheels and source installs, the tests | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't "default" an extra word here? |
||
and baseline images are no longer included by default. | ||
|
||
To restore installing the tests and images have a `setup.cfg` with :: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. images have -> images, use |
||
|
||
[packages] | ||
tests = True | ||
toolkit_tests = True | ||
|
||
in the source directory at build/install time. | ||
|
||
Changes in 1.5.3 | ||
================ | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,10 +79,15 @@ Alternatively, if you do :: | |
pip install -v ./ | ||
|
||
all of the files will be copied to the installation directory however, | ||
you will have to rerun this command every time the source is changed. | ||
you will have to rerun this command every time the source is changed. Additionally you will | ||
need to copy :file:`setup.cfg.template` to :file:`setup.cfg` and edit to contain :: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. edit to -> edit it to |
||
|
||
[test] | ||
local_freetype = True | ||
tests = True | ||
|
||
You can then run the tests to check your work environment is set up properly:: | ||
In either case you can then run the tests to check your work | ||
environment is set up properly:: | ||
|
||
python tests.py | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does not include -> no longer includes