Skip to content

Commit

Permalink
Upgrade to PBS 20241002 / Python 3.12.7. (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Oct 2, 2024
1 parent 437e16b commit 2613eb2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
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__)

0 comments on commit 2613eb2

Please sign in to comment.