From 1447752970a76b346867697194370cf1b88b071e Mon Sep 17 00:00:00 2001 From: foefl Date: Thu, 17 Apr 2025 11:57:25 +0200 Subject: [PATCH] remove unneeded code --- src/delta_barth/__init__.py | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/delta_barth/__init__.py b/src/delta_barth/__init__.py index dc5e795..e69de29 100644 --- a/src/delta_barth/__init__.py +++ b/src/delta_barth/__init__.py @@ -1,22 +0,0 @@ -# import multiprocessing -# import os -# import sys -# from pathlib import Path - -# os.environ["JOBLIB_DISABLE_SHARED_MEMORY"] = "1" - -# interpreter = r"A:\Arbeitsaufgaben\Delta-Barth\cs-wrapper\dopt.DeltaBarth\python\python.exe" -# intp_pth = Path(interpreter).resolve() - -# assert intp_pth.exists(), f"interpreter path seems not to exist: {intp_pth}" - -# multiprocessing.set_executable(str(intp_pth)) -# setattr(sys, "frozen", True) # !! causes termination -# sys.executable = str(intp_pth) -# setattr(sys, "executable", str(intp_pth)) -# setattr(sys, "_base_executable", str(intp_pth)) -# multiprocessing.set_start_method("spawn", force=True) - -# target = Path(r"A:\Arbeitsaufgaben\Delta-Barth\cs-wrapper\dopt.DeltaBarth") -# file = target / "executed.txt" -# file.touch()