Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ All notable changes to this project will be documented in this file. The format
[//]: # (### Other changes:)

## [Unreleased]
### Added Features and Improvements 🙌:
- Added support for Matplotlib 3.11


## [0.13.2] - 2026-05-07
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ production.

The most notable features are:

- Tested with matplotlib `3.5`-`3.10`, for `3.3` and `3.4` please use `pplt <=0.12.0`
- Tested with matplotlib `3.5`-`3.11`, for `3.3` and `3.4` please use `pplt <=0.12.0`
- figsize specifies size of canvas. So labels, ticks or colorbars are not counted.
- Nice top-aligned outter legends
- New colors
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ envlist =
py311-mpl36-np1
py311-mpl37
py312-mpl{38,39,310}
py313-mpl310
py314-mpl310
py313-mpl{310,311}
py314-mpl{310,311}
report
minversion = 4.11.3

Expand All @@ -22,8 +22,8 @@ addopts =

[gh]
python =
3.14 = clean, py314-mpl, py314-mpl310, report
3.13 = lint, clean, py313-mpl, py313-mpl310, report
3.14 = clean, py314-mpl, py314-mpl310, py314-mpl311, report
3.13 = lint, clean, py313-mpl, py313-mpl310, py313-mpl311, report
3.12 = clean, py312-mpl, py312-mpl{38,39,310}, report
3.11 = clean, py311-mpl, py311-mpl36-np1, py311-mpl37, report
3.10 = clean, py310-mpl, py310-mpl35-np1, report
Expand All @@ -38,6 +38,7 @@ deps =
mpl38: matplotlib==3.8.*
mpl39: matplotlib==3.9.*
mpl310: matplotlib==3.10.*
mpl311: matplotlib==3.11.*
np1: numpy<2
commands =
pytest --cov {posargs}
Expand Down
Loading