From f18642f3c3810c1b722eb26fdf293f9a8d34998f Mon Sep 17 00:00:00 2001 From: John Sirois Date: Tue, 10 Sep 2024 19:23:47 -0700 Subject: [PATCH] Upgrade to PBS 20240909 / Python 3.12.6. (#94) --- CHANGES.md | 4 ++++ lift.toml | 4 ++-- noxfile.py | 4 ++-- science/__init__.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2ecb07e..f6d24e3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Release Notes +# 0.7.1 + +Upgrade the science internal Python distribution to [PBS][PBS] CPython 3.12.6 + # 0.7.0 This release adds support for Windows ARM64. diff --git a/lift.toml b/lift.toml index ad467a4..d89cb0d 100644 --- a/lift.toml +++ b/lift.toml @@ -9,8 +9,8 @@ id = "cpython" provider = "PythonBuildStandalone" # N.B.: When updating these, update the corresponding PBS_* constants in noxfile.py. -release = "20240814" -version = "3.12.5" +release = "20240909" +version = "3.12.6" flavor = "install_only_stripped" # By default science ships as a "thin" scie that fetches CPython 3.12 on first run. diff --git a/noxfile.py b/noxfile.py index 7071442..2f41122 100644 --- a/noxfile.py +++ b/noxfile.py @@ -50,8 +50,8 @@ # N.B.: When updating these, update the corresponding values for the PythonBuildStandalone provider # in lift.toml. -PBS_RELEASE = "20240814" -PBS_VERSION = "3.12.5" +PBS_RELEASE = "20240909" +PBS_VERSION = "3.12.6" PBS_FLAVOR = "install_only_stripped" REQUIRES_PYTHON_VERSION = ".".join(PBS_VERSION.split(".")[:2]) diff --git a/science/__init__.py b/science/__init__.py index 86efeba..3856786 100644 --- a/science/__init__.py +++ b/science/__init__.py @@ -3,6 +3,6 @@ from packaging.version import Version -__version__ = "0.7.0" +__version__ = "0.7.1" VERSION = Version(__version__)