From fa8bbe8fa4fab4f5fbebbf20a0d2e8520c5a38a9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Wed, 14 Dec 2022 11:47:07 +0000 Subject: [PATCH] Python: Bump to version 3.11.1, still 32-bit Build tested, both .exe files work from `dist.win32` directory. --- .pre-commit-config.yaml | 2 +- .python-version | 2 +- Build-exe-and-msi.py | 2 +- ChangeLog.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6737328d..50d91e96 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -87,7 +87,7 @@ repos: always_run: true default_language_version: - python: python3.10 + python: python3.11 default_stages: [ commit, push ] diff --git a/.python-version b/.python-version index 54c5196a..371cfe35 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.10.9 +3.11.1 diff --git a/Build-exe-and-msi.py b/Build-exe-and-msi.py index 9cd04d53..adc04432 100644 --- a/Build-exe-and-msi.py +++ b/Build-exe-and-msi.py @@ -18,7 +18,7 @@ from constants import GITVERSION_FILE ########################################################################### # Check we're on a supported platform ########################################################################### -if sys.version_info[0:2] != (3, 10): +if sys.version_info[0:2] != (3, 11): raise AssertionError(f'Unexpected python version {sys.version}') if sys.platform == 'win32': diff --git a/ChangeLog.md b/ChangeLog.md index ec1067e4..954f37aa 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -9,7 +9,7 @@ produce the Windows executables and installer. --- -* We now test against, and package with, Python 3.10.9, 32-bit. +* We now test against, and package with, Python 3.11.1, 32-bit. **As a consequence of this we no longer support Windows 7. This is due to @@ -29,7 +29,7 @@ produce the Windows executables and installer. Pre-Release 5.7.0-alpha0 === -* We now test against, and package with, Python 3.10.9, 32-bit. +* We now test against, and package with, Python 3.11.1, 32-bit. ---