Add packaging dependency and fallback version compare

This commit is contained in:
2026-02-24 14:57:19 +01:00
parent 61971f2155
commit df3db2cba4
8 changed files with 57 additions and 13 deletions

View File

@@ -19,7 +19,7 @@ REM Überprüfe, ob Abhängigkeiten installiert sind
.venv\Scripts\python.exe -c "import pdfplumber" 2>nul
if errorlevel 1 (
echo 📚 Installiere Abhängigkeiten...
call .venv\Scripts\python.exe -m pip install -q pdfplumber icalendar pypdf2 pytz
call .venv\Scripts\python.exe -m pip install -q pdfplumber icalendar pypdf2 pytz packaging
echo ✓ Abhängigkeiten installiert
)