@@ -9,18 +9,29 @@ SemVer (major, minor, patch) and includes both major and minor
9
9
releases. For projects that use date-based versioning, every release
10
10
is a 'minor version'.
11
11
12
+ Matplotlib follows `NEP 29
13
+ <https://numpy.org/neps/nep-0029-deprecation_policy.html> `__.
14
+
12
15
13
16
Python and NumPy
14
17
================
15
18
16
- - support minor versions of ``Python `` initially released
17
- 36 months prior to our planned release date.
18
- - support minor versions of ``numpy `` initially released in the 36
19
- months prior to our planned release date or oldest that supports the
20
- minimum python version (which ever is higher)
19
+ Matplotlib supports:
20
+
21
+
22
+ - All minor versions of Python released 42 months prior to the
23
+ project, and at minimum the two latest minor versions.
24
+ - All minor versions of ``numpy `` released in the 24 months prior
25
+ to the project, and at minimum the last three minor versions.
26
+
27
+ In ``setup.py ``, the ``python_requires `` variable should be set to
28
+ the minimum supported version of Python. All supported minor
29
+ versions of Python should be in the test matrix and have binary
30
+ artifacts built for the release.
31
+
32
+ Minimum Python and NumPy version support should be adjusted upward
33
+ on every major and minor release, but never on a patch release.
21
34
22
- We will bump the minimum python and numpy versions as we can every
23
- minor and major release, but never on a patch release.
24
35
25
36
See also the :ref: `list-of-dependency-min-versions `.
26
37
@@ -30,12 +41,12 @@ Python Dependencies
30
41
For python dependencies we should support at least:
31
42
32
43
with compiled extensions
33
- minor versions initially released in the 36 months prior to our
44
+ minor versions initially released in the 24 months prior to our
34
45
planned release date or the oldest that support our minimum python +
35
46
numpy
36
47
37
48
without complied extensions
38
- minor versions initially released in the 24 months prior to our
49
+ minor versions initially released in the 12 months prior to our
39
50
planed release date or the oldest that supports our minimum python.
40
51
41
52
We will only bump these dependencies as we need new features or the
@@ -77,7 +88,7 @@ specification of the dependencies.
77
88
========== ======== ======
78
89
Matplotlib Python NumPy
79
90
========== ======== ======
80
- 3.3 3.6 1.12 .0
91
+ 3.3 3.6 1.15 .0
81
92
3.2 3.6 1.11.0
82
93
`3.1 `_ 3.6 1.11.0
83
94
`3.0 `_ 3.5 1.10.0
0 commit comments