Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to PBS 20241002 / Python 3.12.7. #99

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.8.1

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

## 0.8.0

Add support for `--no-use-platform-suffix` as a complement to `--use-platform-suffix`. Without
Expand All @@ -9,7 +13,7 @@ suffix to never be used by specifying `--no-use-platform-suffix`.

## 0.7.1

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

## 0.7.0

Expand Down
4 changes: 2 additions & 2 deletions lift.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ id = "cpython"
provider = "PythonBuildStandalone"

# N.B.: When updating these, update the corresponding PBS_* constants in noxfile.py.
release = "20240909"
version = "3.12.6"
release = "20241002"
version = "3.12.7"
flavor = "install_only_stripped"

# By default science ships as a "thin" scie that fetches CPython 3.12 on first run.
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@

# N.B.: When updating these, update the corresponding values for the PythonBuildStandalone provider
# in lift.toml.
PBS_RELEASE = "20240909"
PBS_VERSION = "3.12.6"
PBS_RELEASE = "20241002"
PBS_VERSION = "3.12.7"
PBS_FLAVOR = "install_only_stripped"

REQUIRES_PYTHON_VERSION = ".".join(PBS_VERSION.split(".")[:2])
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.8.0"
__version__ = "0.8.1"

VERSION = Version(__version__)