Skip to content

Commit

Permalink
Upgrade to PBS 20250205 / Python 3.12.9. (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Feb 8, 2025
1 parent 7fd26f9 commit 5404b45
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
# N.B.: We use an x86-64 Python for Windows ARM64 because this is what we ship with via
# PBS, and we need to be able to resolve x86-64 compatible requirements (which include
# native deps like psutil) for our shiv.
UV_PYTHON_VERSION=cpython-3.12.8-windows-x86_64-none
UV_PYTHON_VERSION=cpython-3.12.9-windows-x86_64-none
"${UV}" python install ${UV_PYTHON_VERSION}
echo UV_PYTHON="${UV_PYTHON_VERSION}" >> ${GITHUB_ENV}
- name: Installing emulators
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
# N.B.: We use an x86-64 Python for Windows ARM64 because this is what we ship with via
# PBS, and we need to be able to resolve x86-64 compatible requirements (which include
# native deps like psutil) for our shiv.
UV_PYTHON_VERSION=cpython-3.12.8-windows-x86_64-none
UV_PYTHON_VERSION=cpython-3.12.9-windows-x86_64-none
"${UV}" python install ${UV_PYTHON_VERSION}
echo UV_PYTHON_ARGS="--python ${UV_PYTHON_VERSION}" >> ${GITHUB_ENV}
- name: Installing emulators
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12.8
3.12.9
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.11.3

Upgrade the science internal Python distribution to [PBS][PBS] CPython 3.12.9.

## 0.11.2

This release fixes a bug introduced in the 0.11.0 release whereby a `ptex` binary was always
Expand Down
4 changes: 2 additions & 2 deletions lift.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description = "Ship your interpreted executables using science."
id = "cpython"
provider = "PythonBuildStandalone"

release = "20241206"
version = "3.12.8"
release = "20250205"
version = "3.12.9"
flavor = "install_only_stripped"

# By default, science ships as a "thin" scie that fetches CPython 3.12 on first run.
Expand Down
2 changes: 1 addition & 1 deletion science/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

from packaging.version import Version

__version__ = "0.11.2"
__version__ = "0.11.3"

VERSION = Version(__version__)

0 comments on commit 5404b45

Please sign in to comment.