DEP: require cycler 0.12.0 or newer (drop 0.10.0 and 0.11.0) · matplotlib/matplotlib@7ab30ba · GitHub
Skip to content

Commit 7ab30ba

Browse files
committed
DEP: require cycler 0.12.0 or newer (drop 0.10.0 and 0.11.0)
1 parent 8faa05b commit 7ab30ba

6 files changed

Lines changed: 9 additions & 7 deletions

File tree

ci/minver-requirements.txt

Lines changed: 1 addition & 1 deletion

doc/api/next_api_changes/development/31740_REC.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ bumped:
1313
+-------------+-----------------+----------------+
1414
| Contourpy | 1.0.1 | 1.2.1 |
1515
+-------------+-----------------+----------------+
16+
| Cycler | 0.10.0 | 0.12.0 |
17+
+-------------+-----------------+----------------+
1618
| Pybind11 | 2.13.2 | 3.0.0 |
1719
+-------------+-----------------+----------------+
1820

doc/install/dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ reference.
2222

2323
* `Python <https://www.python.org/downloads/>`_ (>= 3.12)
2424
* `contourpy <https://pypi.org/project/contourpy/>`_ (>= 1.2.1)
25-
* `cycler <https://matplotlib.org/cycler/>`_ (>= 0.10.0)
25+
* `cycler <https://matplotlib.org/cycler/>`_ (>= 0.12.0)
2626
* `dateutil <https://pypi.org/project/python-dateutil/>`_ (>= 2.7)
2727
* `fontTools <https://fonttools.readthedocs.io/en/latest/>`_ (>= 4.28.2)
2828
* `kiwisolver <https://github.com/nucleic/kiwi>`_ (>= 1.3.1)

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies:
1414
- c-compiler
1515
- cxx-compiler
1616
- contourpy>=1.2.1
17-
- cycler>=0.10.0
17+
- cycler>=0.12.0
1818
- fonttools>=4.28.2
1919
- importlib-resources>=3.2.0
2020
- kiwisolver>=1.3.1

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def _check_versions():
250250
from . import ft2font # noqa: F401
251251

252252
for modname, minver in [
253-
("cycler", "0.10"),
253+
("cycler", "0.12.0"),
254254
("dateutil", "2.7"),
255255
("kiwisolver", "1.3.1"),
256256
("numpy", "1.25"),

pyproject.toml

Lines changed: 3 additions & 3 deletions

0 commit comments

Comments
 (0)