From 642a374bac5fb9181eaa58cbfd6467ded488bc8a Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 8 Jul 2024 22:49:15 +0200 Subject: [PATCH] Add a checklist comment for upgrading min py ver (MR 2357) --- pmb/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pmb/__init__.py b/pmb/__init__.py index 5b655f34..761f96b2 100644 --- a/pmb/__init__.py +++ b/pmb/__init__.py @@ -28,6 +28,13 @@ from .commands import run_command __version__ = "3.0.0_alpha" # Python version check +# === CHECKLIST FOR UPGRADING THE REQUIRED PYTHON VERSION === +# * .ci/vermin.sh +# * README.md +# * docs/usage.rst +# * pmb/__init__.py (you are here) +# * pyproject.toml +# * when upgrading to python 3.11: pmb/helpers/toml.py and remove this line version = sys.version_info if version < (3, 10): print("You need at least Python 3.10 to run pmbootstrap")