Skip to content

Commit

Permalink
Add Python 3.12 and Python 3.13 as probe-able versions
Browse files Browse the repository at this point in the history
  • Loading branch information
huonw committed Jan 13, 2025
1 parent 62894d0 commit 638801b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions package/scie-pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,20 @@ release = "20240415"
lazy = true
version = "3.11.9"

[[lift.interpreters]]
id = "cpython312"
provider = "PythonBuildStandalone"
release = "20250106"
lazy = true
version = "3.12.8"

[[lift.interpreters]]
id = "cpython313"
provider = "PythonBuildStandalone"
release = "20250106"
lazy = true
version = "3.13.1"

[[lift.interpreter_groups]]
id = "cpython"
selector = "{scie.bindings.configure:PYTHON}"
Expand All @@ -50,6 +64,8 @@ members = [
"cpython39",
"cpython310",
"cpython311",
"cpython312",
"cpython313",
]

[[lift.files]]
Expand Down
2 changes: 2 additions & 0 deletions tools/src/scie_pants/pants_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
PYTHON_IDS = {
# N.B.: These values must match the lift TOML interpreter ids.
# Important: all pythons used in pants_python_versions.json must be represented in this list.
"cp313": "cpython313",
"cp312": "cpython312",
"cp311": "cpython311",
"cp310": "cpython310",
"cp39": "cpython39",
Expand Down

0 comments on commit 638801b

Please sign in to comment.