From 25b155474efae554de174307139854334f4cdea1 Mon Sep 17 00:00:00 2001 From: Dramelac Date: Tue, 17 Dec 2024 22:49:21 +0100 Subject: [PATCH] New release --- exegol-resources | 2 +- exegol/config/ConstantConfig.py | 2 +- exegol/config/EnvInfo.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/exegol-resources b/exegol-resources index a6e78aad..27b2d1a8 160000 --- a/exegol-resources +++ b/exegol-resources @@ -1 +1 @@ -Subproject commit a6e78aade01083c4f50d3d5f0d55b8584d8cd7f0 +Subproject commit 27b2d1a83e30953418497fe889340d7afdab3fb9 diff --git a/exegol/config/ConstantConfig.py b/exegol/config/ConstantConfig.py index b9f97567..f6516f56 100644 --- a/exegol/config/ConstantConfig.py +++ b/exegol/config/ConstantConfig.py @@ -5,7 +5,7 @@ class ConstantConfig: """Constant parameters information""" # Exegol Version - version: str = "4.3.9b1" + version: str = "4.3.9" # Exegol documentation link documentation: str = "https://exegol.rtfd.io/" diff --git a/exegol/config/EnvInfo.py b/exegol/config/EnvInfo.py index a8a2fb88..15a09de4 100644 --- a/exegol/config/EnvInfo.py +++ b/exegol/config/EnvInfo.py @@ -214,6 +214,7 @@ def getDockerDesktopSettings(cls) -> Dict: return {} file_path = config_file[0] if file_path is None: + assert dir_path is not None # Try to find settings file with new filename or fallback to legacy filename for Docker Desktop older than 4.34 file_path = (dir_path / "settings-store.json") if (dir_path / "settings-store.json").is_file() else (dir_path / "settings.json") logger.debug(f"Loading Docker Desktop config from {file_path}")