From 0f71f82a3fe339fcd0d20a2208e9911a09b9f154 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Wed, 29 Jan 2025 11:13:11 +0100 Subject: [PATCH] update project, launch files --- launch.cmd | 2 +- launch.ps1 | 3 +-- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/launch.cmd b/launch.cmd index 238dff9..29fcf6a 100644 --- a/launch.cmd +++ b/launch.cmd @@ -13,7 +13,7 @@ REM Perform a git pull git pull REM Run uv sync if .venv exists (already activated) -uv sync --no-dev +uv sync REM Start main.py uv run python main.py diff --git a/launch.ps1 b/launch.ps1 index 89d456a..f7df032 100644 --- a/launch.ps1 +++ b/launch.ps1 @@ -12,8 +12,7 @@ if (Test-Path .venv) { git pull # Run uv sync if .venv exists (already activated) -uv sync --no-dev - +uv sync # Start main.py uv run python main.py diff --git a/pyproject.toml b/pyproject.toml index d843b24..3534f13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ dependencies = [ "omegaconf>=2.3.0", "prettytable>=3.12.0", "pyqt6>=6.8.0", - "python-dotenv>=1.0.1", "requests>=2.32.3", ] @@ -22,6 +21,7 @@ dev = [ "bump-my-version>=0.29.0", "icecream>=2.1.4", "nuitka>=2.5.9", + "python-dotenv>=1.0.1", "ruff>=0.9.2", ] [tool.ruff]