This document is targeted at project maintainers. It describes various maintenance tasks and processes.
Check here: https://devguide.python.org/versions/.
Consider raising the lowest supported Python version. Adjustments must be made in the following files:
Afterwards, update the dependencies of the script.
Raise the lowest supported versions of the dependencies in the file
pyproject.toml
. The versions should be compatible with
each other.
One approach is to simply set the versions in the config file to the ones specified in the lock file.
This project is based on the following Copier template: https://github.com/trallnag/copier-template-python-script. Consider updating things in the template repository as well.