@@ -238,7 +238,8 @@ The following validators, defined in `.rcsetup`, are deprecated:
238238``validate_axes_titlelocation ``, ``validate_toolbar ``,
239239``validate_ps_papersize ``, ``validate_legend_loc ``,
240240``validate_bool_maybe_none ``, ``validate_hinting ``,
241- ``validate_movie_writers ``, ``validate_webagg_address ``.
241+ ``validate_movie_writers ``, ``validate_webagg_address ``,
242+ ``validate_nseq_float ``, ``validate_nseq_int ``.
242243To test whether an rcParam value would be acceptable, one can test e.g. ``rc =
243244RcParams(); rc[k] = v `` raises an exception.
244245
@@ -406,6 +407,16 @@ what the docs stated). They are deprecated; if you write a backend
406407which needs to customize such events, please directly override
407408``press_pan ``/``press_zoom ``/``release_pan ``/``release_zoom `` instead.
408409
410+ FigureCanvasGTK3._renderer_init
411+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
412+ Overriding this method to initialize renderers for GTK3 canvases is deprecated.
413+ Instead, the renderer should be initialized in the ``__init__ `` method of the
414+ subclass (which should call the base-class' ``__init__ `` as appropriate). To
415+ keep back-compatibility with earlier versions of Matplotlib (which *required *
416+ ``_renderer_init `` to be overridden), a fully empty implementation (``def
417+ _renderer_init(self): pass ``) may be kept and will not trigger the deprecation
418+ warning.
419+
409420Path helpers in :mod: `.bezier `
410421~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
411422
@@ -545,7 +556,7 @@ The ``cbid`` and ``locator`` attribute are deprecated. Use
545556``qt_compat.is_pyqt5 ``
546557~~~~~~~~~~~~~~~~~~~~~~
547558This function is deprecated in prevision of the future release of PyQt6. The
548- Qt version can be checked using ``QtCore.QT_VERSION_STR ``.
559+ Qt version can be checked using ``QtCore.qVersion() ``.
549560
550561Reordering of parameters by `.Artist.set `
551562~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments