1
0
mirror of https://github.com/gryf/boxpy.git synced 2025-12-18 21:10:17 +01:00

Added support for Fedora 42

This commit is contained in:
2025-05-20 11:27:21 +02:00
parent 88172acd67
commit 60e45b9bfc
2 changed files with 5 additions and 2 deletions

View File

@@ -37,12 +37,14 @@ Tested distros
- 20.04 - 20.04
- 22.04 - 22.04
- 24.04 - 24.04
- 25.04
- Fedora - Fedora
- 37 - 37
- 38 - 38
- 39 - 39
- 40 - 40
- 41 - 41
- 42
- Centos Stream - Centos Stream
- 8 - 8
- 9 - 9

5
box.py
View File

@@ -18,7 +18,7 @@ import requests
import yaml import yaml
__version__ = "1.11.1" __version__ = "1.11.2"
CACHE_DIR = os.environ.get('XDG_CACHE_HOME', os.path.expanduser('~/.cache')) CACHE_DIR = os.environ.get('XDG_CACHE_HOME', os.path.expanduser('~/.cache'))
CLOUD_IMAGE = "ci.iso" CLOUD_IMAGE = "ci.iso"
@@ -1144,7 +1144,8 @@ class Fedora(Image):
'38': '1.6', '38': '1.6',
'39': '1.5', '39': '1.5',
'40': '1.14', '40': '1.14',
'41': '1.4'} '41': '1.4',
'42': '1.1'}
def __init__(self, vbox, version, arch, fname=None): def __init__(self, vbox, version, arch, fname=None):
super().__init__(vbox, version, arch) super().__init__(vbox, version, arch)