Skip to content

Commit

Permalink
Upgrade to PBS 20240909 / Python 3.12.6. (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Sep 11, 2024
1 parent 69238b3 commit f18642f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
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.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.
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 = "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.
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 = "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])
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.7.0"
__version__ = "0.7.1"

VERSION = Version(__version__)

0 comments on commit f18642f

Please sign in to comment.