◐ Shell
clean mode source ↗

scripts: Add automation to add python patch releases by jamesobutler · Pull Request #428 · python-cmake-buildsystem/python-cmake-buildsystem

This adds a script for updating the code to have support for newer python patch releases. This script was successfully run to add support for python 3.9.23, 3.10.18, 3.11.13 and 3.12.11.

This could in the future be run by a GitHub actions scheduled automation with appropriate credentials for commiting changes to workflow files which are updated by this script.

Script output:

Updated python-version matrix and job names in C:\GitHub\python-cmake-buildsystem\.github\workflows\CI.yml
Updated python_version fields and job names in C:\GitHub\python-cmake-buildsystem\.circleci\config.yml
Added set(_download_3.9.23_md5 "e6c3c5ba679cc6a1e2932b2fdcafbc3d") to CMakeLists.txt after line 280
Added set(_download_3.10.18_md5 "035ff701ad6c9183dc4c6de817924892") to CMakeLists.txt after line 300
Added set(_download_3.11.13_md5 "8abf1b1a9237f01b54572e2ecb246262") to CMakeLists.txt after line 315
Added set(_download_3.12.11_md5 "45bda920329568dd6650b0ac556d17db") to CMakeLists.txt after line 328
Updated default PYTHON_VERSION in CMakeLists.txt: set(PYTHON_VERSION "3.12.10" CACHE STRING "The version of Python to build.") -> set(PYTHON_VERSION "3.12.11" CACHE STRING "The version of Python to build.")