You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improved documentation for NumberedObjectCollections on Slicing behavior. (:issue:`798`)
25
+
26
+
**Deprecations**
27
+
28
+
* Dropped support for python 3.9 through 3.11, and numpy 1.26 in order to comply with `SPEC 0 <https://scientific-python.org/specs/spec-0000/>`_ (:issue:`780`).
29
+
5
30
1.1 releases
6
31
============
7
32
@@ -15,11 +40,8 @@ MontePy Changelog
15
40
**Bugs Fixed**
16
41
17
42
* Fixed bug where lines that were the allowed length was raising a ``LineOverRunWarning`` when read by MontePy (:issue:`517`).
Copy file name to clipboardExpand all lines: doc/source/dev_standards.rst
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,21 @@ Here is a quick summary of release types used, that is not meant to be authorita
37
37
Features are not locked at this point, and may change.
38
38
This is signified by adding ``a\d+`` to the end of the *next* release.
39
39
40
+
Dependency Support
41
+
------------------
42
+
43
+
MontePy has adopted `SPEC 0 <https://scientific-python.org/specs/spec-0000/>`_.
44
+
45
+
This project supports:
46
+
47
+
* All minor versions of Python released 36 months prior to the project, and at minimum the two latest minor versions.
48
+
49
+
* All minor versions of numpy released in the 24 months prior to the project, and at minimum the last three minor versions.
50
+
* In ``pyproject.toml``, the ``requires-python`` variable should be set to the minimum supported version of Python. All supported minor versions of Python should be in the test matrix and have binary artifacts built for the release.
51
+
52
+
Minimum Python and NumPy version support should be adjusted upward on every major and minor release, but never on a patch release.
0 commit comments