From b654d28b0eee3bab1be02d6c6a622796c245cfae Mon Sep 17 00:00:00 2001 From: LaSi5002 Date: Thu, 22 May 2025 17:07:10 +0200 Subject: [PATCH] fix: update rapidyaml requirement for Python 3.12 compatibility and add missing import --- requirements.txt | 2 +- src/fourc_webviewer/run_webserver.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index db20ccb..3bfc3b5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -111,7 +111,7 @@ pyvista==0.45.0 # via -r requirements.in pyyaml==6.0.2 # via trame -rapidyaml==0.8.0 +rapidyaml==0.9.0 # via fourcipp referencing==0.36.2 # via diff --git a/src/fourc_webviewer/run_webserver.py b/src/fourc_webviewer/run_webserver.py index cea435f..334e504 100644 --- a/src/fourc_webviewer/run_webserver.py +++ b/src/fourc_webviewer/run_webserver.py @@ -1,5 +1,6 @@ """Utility to run the webserver on a defined port.""" +from fourc_webviewer.fourc_webserver import FourCWebServer from fourc_webviewer_default_files import ( DEFAULT_INPUT_FILE, )