Revisions of python-matplotlib

Matej Cepl's avatar Matej Cepl (mcepl) accepted request 940596 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 57)
- Skip tests which crash with oom
- Update to version 3.5.1
  * https://matplotlib.org/stable/users/prev_whats_new/whats_new_3.5.0.html
  * Figure and Axes creation / management
    - subplot_mosaic supports simple Axes sharing
    - Figure now has draw_without_rendering method
    - Figure __init__ passes keyword arguments through to set
  * Plotting methods
    - Add Annulus patch
    - set_data method for FancyArrow patch
    - New arrow styles in ArrowStyle and ConnectionPatch
    - Setting collection offset transform after initialization
  * Colors and colormaps
    - Colormap registry (experimental)
    - Image interpolation now possible at RGBA stage
    - imshow supports half-float arrays
    - A callback registry has been added to Normalize objects
  * Titles, ticks, and labels
    - Settings tick positions and labels simultaneously in
      set_ticks
  * Fonts and Text
    - Triple and quadruple dot mathtext accents
    - Font properties of legend title are configurable
    - Text and TextBox added parse_math option
    - Text can be positioned inside TextBox widget
    - Simplifying the font setting for usetex mode
    - Type 42 subsetting is now enabled for PDF/PS backends
  * rcParams improvements
    - Allow setting default legend labelcolor globally
  * 3D Axes improvements
    - Axes3D now allows manual control of draw order
    - Allow changing the vertical axis in 3d plots
    - plot_surface supports masked arrays and NaNs
    - 3D plotting methods support data keyword argument
  * Interactive tool improvements
    - Colorbars now have pan and zoom functionality
    - Updated the appearance of Slider widgets
    - Removing points on a PolygonSelector
    - Dragging selectors
    - Clearing selectors
    - Setting artist properties of selectors
    - Ignore events outside selection
    - CallbackRegistry objects gain a method to temporarily block
      signals
    - Directional sizing cursors
  * Sphinx extensions
    - More configuration of mathmpl sphinx extension
  * Backend-specific improvements
    - GTK backend
    - Qt backends
    - HiDPI support in Cairo-based, GTK, and Tk backends
    - Qt figure options editor improvements
    - WX backends support mouse navigation buttons
    - WebAgg uses asyncio instead of Tornado
- Add gtk4 and gtk-common subpackages
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 56)
- Skip some broken tests with new pyparsing.
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 927122 from Axel Braun's avatar Axel Braun (DocB) (revision 55)
- version 3.4.3
  Patches removed (in version 3.4.3):
  inkscape11.patch
  0001-FIX-Pillow-asarray-bug.patch
  0002-Dont-modify-arrays-when-masking-values-for-log.patch
 
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 908596 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 54)
- Fix tests with inkscape11.patch
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 904573 from Antonio Larrosa's avatar Antonio Larrosa (alarrosa) (revision 53)
- Add patches from upstream to fix an raised exception saying
  "__array__(): takes 1 positional argument but 2 were given"
  and an incompatibility with numpy 1.21.0 (slightly rebased):
  * 0001-FIX-Pillow-asarray-bug.patch
  * 0002-Dont-modify-arrays-when-masking-values-for-log.patch
buildservice-autocommit accepted request 893505 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 52)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 893327 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 51)
update to latest version
buildservice-autocommit accepted request 891301 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 50)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 891283 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 49)
- Update build and runtime TeX requirements for -latex subpackage.
buildservice-autocommit accepted request 889229 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 48)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 47)
- Add a required BuildRequires on tex(geometry.sty).
buildservice-autocommit accepted request 883567 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 46)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 883353 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 45)
- specfile:
  * update numpy requirement
  * removed patch no-builddir-freetype.patch and instead put the source files directly into a
    directory that works with the current build system
  * also added qhull source code (which otherwise the build process tries to download)
- update to version 3.4.1:
  * fix errorbar when specifying fillstyle
  * fix Inkscape cleanup at exit on Windows for tests
  * fix legends of colour-mapped scatter plots
  * fix positioning of annotation fancy arrows
  * fix size and color rendering for 3D scatter plots
  * fix suptitle manual positioning when using constrained layout
  * respect antialiasing settings in cairo backends as well
- changes from version 3.4.0:
  * Figure and Axes creation / management
    + New subfigure functionality
    + Single-line string notation for subplot_mosaic
    + Changes to behavior of Axes creation methods (gca, add_axes,
      add_subplot)
    + add_subplot/add_axes gained an axes_class parameter
    + Subplot and subplot2grid can now work with constrained layout
  * Plotting methods
    + axline supports transform parameter
    + New automatic labeling for bar charts
    + A list of hatches can be specified to bar and barh
    + Setting BarContainer orientation
    + Contour plots now default to using ScalarFormatter
    + Axes.errorbar cycles non-color properties correctly
    + errorbar errorevery parameter matches markevery
    + hexbin supports data reference for C parameter
    + Support callable for formatting of Sankey labels
    + Axes.spines access shortcuts
    + New stairs method and StepPatch artist
    + Added orientation parameter for stem plots
    + Angles on Bracket arrow styles
    + TickedStroke patheffect
  * Colors and colormaps
    + Collection color specification and mapping
    + Transparency (alpha) can be set as an array in collections
    + pcolormesh has improved transparency handling by enabling
      snapping
    + IPython representations for Colormap objects
    + Colormap.set_extremes and Colormap.with_extremes
    + Get under/over/bad colors of Colormap objects
    + New cm.unregister_cmap function
    + New CenteredNorm for symmetrical data around a center
    + New FuncNorm for arbitrary normalizations
    + GridSpec-based colorbars can now be positioned above or to the
      left of the main axes
  * Titles, ticks, and labels
    + supxlabel and supylabel
    + Shared-axes subplots tick label visibility is now correct for
      top or left labels
    + An iterable object with labels can be passed to Axes.plot
  * Fonts and Text
    + Text transform can rotate text direction
    + matplotlib.mathtext now supports overset and underset LaTeX
      symbols
    + math_fontfamily parameter to change Text font family
    + TextArea/AnchoredText support horizontalalignment
    + PDF supports URLs on Text artists
  * rcParams improvements
    + New rcParams for dates: set converter and whether to use
      interval_multiples
    + Date formatters now respect usetex rcParam
    + Setting image.cmap to a Colormap
    + Tick and tick label colors can be set independently using
      rcParams
  * 3D Axes improvements
    + Errorbar method in 3D Axes
    + Stem plots in 3D Axes
    + 3D Collection properties are now modifiable
    + Panning in 3D Axes
  * Interactive tool improvements
    + New RangeSlider widget
    + Sliders can now snap to arbitrary values
    + Pausing and Resuming Animations
  * Sphinx extensions
    + plot_directive caption option
  * Backend-specific improvements
    + Consecutive rasterized draws now merged
    + Support raw/rgba frame format in FFMpegFileWriter
    + nbAgg/WebAgg support middle-click and double-click
    + nbAgg support binary communication
    + Indexed color for PNG images in PDF files when possible
    + Improved font subsettings in PDF/PS
    + Kerning added to strings in PDFs
    + Fully-fractional HiDPI in QtAgg
    + wxAgg supports fullscreen toggle
buildservice-autocommit accepted request 872040 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 44)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 872037 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 43)
- Skip python36 build. Due to NEP 29 there is no python36-numpy in
  Tumbleweed anymore.
buildservice-autocommit accepted request 867992 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 42)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 867874 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 41)
update to latest version
buildservice-autocommit accepted request 863229 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 40)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 863205 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 39)
- Update to v3.3.3
  This release contains several critical bug-fixes:
  * Fix calls to Axis.grid with argument visible=True.
  * Fix fully masked imshow.
  * Fix inconsistent color mapping in scatter for 3D plots.
  * Fix notebook/nbAgg figures when used with ipywidgets in the
    same cell.
  * Fix notebook/nbAgg/WebAgg on older (e.g., Firefox ESR)
    browsers.
  * Fix pcolormesh with datetime coordinates.
  * Fix performance regression with datetimes.
  * Fix singular ticks with small log ranges.
  * Fix timers/animations on wx and notebook backends.
  * Remove certifi as a hard runtime dependency.
- Changelog for v3.3.2
  This release contains several critical bug-fixes:
  * fix Axis scale on twinned Axes
  * fix auto-close of Figures in nbagg
  * fix automatic title placement if Axes is off the Figure
  * fix autoranging of log scales with barstacked histogram
  * fix extra redraws when using Button or TextBox widgets
  * fix imshow with LogNorm and large vmin/vmax ranges
  * fix plotting Pandas DataFrame with string MultiIndex
  * fix scatter with marker=''
  * fix scatter3d color/linewidth re-projection
  * fix state of mode buttons in TkAgg backends
  * include license files in built distribution
  * reduce Visual C++ runtime requirements on Windows
- Changelog for v3.3.1
  This release contains several critical bug-fixes:
buildservice-autocommit accepted request 843432 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 38)
baserev update by copy to link target
Displaying revisions 41 - 60 of 97
openSUSE Build Service is sponsored by