-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
NumPy >= 1.25 does not support Python 3.8 anymore but I want my library to support Python 3.8 as long as security updates are provided for it. As soon as Python 3.8 reaches end of life in October 2024, I will drop support for it and update the dependencies accordingly. |
Beta Was this translation helpful? Give feedback.
-
Taking it a bit further, since this is basically added maintenance on your part. The solver will know what to do with python 3.8 since 1.24.4 is valid on python3.8 based on published metadata. Hence, end result can be [tool.poetry.dependencies]
python = ">=3.8,<3.13"
numpy = ">=1.24.4"
... If for your own development you want to keep it locked to |
Beta Was this translation helpful? Give feedback.
NumPy >= 1.25 does not support Python 3.8 anymore but I want my library to support Python 3.8 as long as security updates are provided for it. As soon as Python 3.8 reaches end of life in October 2024, I will drop support for it and update the dependencies accordingly.