From 295fb591015879e8470755edc37270dcdbcaa48e Mon Sep 17 00:00:00 2001 From: gryf Date: Fri, 27 Feb 2026 10:26:28 +0100 Subject: [PATCH] Bumped Fedora and Centos Stream versions --- README.rst | 3 ++- box.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 0383ef7..ab19ec0 100644 --- a/README.rst +++ b/README.rst @@ -48,11 +48,12 @@ Tested distros - Centos Stream - 8 - 9 + - 10 - Debian - 10 (buster) - 11 (bullseye) - 12 (bookworm) - - 13 (trixie) - prerelease + - 13 (trixie) There is possibility to use whatever OS image which supports cloud-init. Use the ``--image`` param for ``create`` command to pass image filename, although diff --git a/box.py b/box.py index dde7ab3..293ffba 100755 --- a/box.py +++ b/box.py @@ -1145,7 +1145,8 @@ class Fedora(Image): '39': '1.5', '40': '1.14', '41': '1.4', - '42': '1.1'} + '42': '1.1', + '43': '1.6'} def __init__(self, vbox, version, arch, fname=None): super().__init__(vbox, version, arch) @@ -1252,7 +1253,7 @@ DISTROS = {'ubuntu': {'username': 'ubuntu', 'realname': 'centos', 'img_class': CentosStream, 'amd64': 'x86_64', - 'default_version': '9'}, + 'default_version': '10'}, 'debian': {'username': 'debian', 'realname': 'debian', 'img_class': Debian,