Skip to content

Commit f5f3418

Browse files
committed
Mark python 3.14 containers as latest, remove from python 3.13
1 parent 845d2b3 commit f5f3418

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/bci_build/package/python.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,14 @@ def _get_python_kwargs(
153153
)
154154

155155

156-
_PYTHON_TW_VERSIONS: tuple[_PYTHON_VERSIONS, ...] = ("3.11", "3.13")
157156
PYTHON_TW_CONTAINERS = (
158157
PythonDevelopmentContainer(
159158
**_get_python_kwargs(pyver, OsVersion.TUMBLEWEED),
160-
is_latest=pyver == _PYTHON_TW_VERSIONS[-1],
159+
is_latest=False,
161160
package_name=f"python-{pyver}-image",
162161
additional_versions=["3"],
163162
)
164-
for pyver in _PYTHON_TW_VERSIONS
163+
for pyver in ("3.11", "3.13")
165164
)
166165

167166
PYTHON_3_11_CONTAINERS = (

0 commit comments

Comments
 (0)