##// END OF EJS Templates
Don't force matplotlib backend names to be lowercase (#14475)...
Don't force matplotlib backend names to be lowercase (#14475) This is something I missed as part of moving the backend resolution to Matplotlib. Since version 3.9.0 Matplotlib handles the case-sensitivity of backend names, making them all lowercase for internal use. But since matplotlib/matplotlib#28473 uppercase letters are allowed in backend names of the form `module://soMe_moDule.sOmE_NAme`. Hence we need to not force backend names to be lowercase in IPython when passing them to Matplotlib. It is just a one line change that happens to make the code simpler, plus a new test. The Matplotlib change will be released in 3.9.1 which is due shortly, possibly today. The new test checks the Matplotlib version to know whether uppercase backend module names are allowed or not.
M Bussonnier -
r28831:6bde8f6c merge
Show More
Name Size Modified Last Commit Author
/ IPython / testing / plugin
Makefile Loading ...
README.txt Loading ...
__init__.py Loading ...
dtexample.py Loading ...
ipdoctest.py Loading ...
pytest_ipdoctest.py Loading ...
setup.py Loading ...
simple.py Loading ...
simplevars.py Loading ...
test_combo.txt Loading ...
test_example.txt Loading ...
test_exampleip.txt Loading ...
test_ipdoctest.py Loading ...
test_refs.py Loading ...

=======================================================
Nose plugin with IPython and extension module support
=======================================================

This directory provides the key functionality for test support that IPython
needs as a nose plugin, which can be installed for use in projects other than
IPython.

The presence of a Makefile here is mostly for development and debugging
purposes as it only provides a few shorthand commands. You can manually
install the plugin by using standard Python procedures (``setup.py install``
with appropriate arguments).

To install the plugin using the Makefile, edit its first line to reflect where
you'd like the installation.

Once you've set the prefix, simply build/install the plugin with::

make

and run the tests with::

make test

You should see output similar to::

maqroll[plugin]> make test
nosetests -s --with-ipdoctest --doctest-tests dtexample.py
..
----------------------------------------------------------------------
Ran 2 tests in 0.016s

OK