1
0
mirror of https://github.com/gryf/boxpy.git synced 2025-12-18 04:50:18 +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
- 22.04
- 24.04
- 25.04
- Fedora
- 37
- 38
- 39
- 40
- 41
- 42
- Centos Stream
- 8
- 9

5
box.py
View File

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