From 8b36d8f8189901a67ac33642132ae3b20ffa8085 Mon Sep 17 00:00:00 2001 From: Marco Dalla Tiezza <47104118+AresValley@users.noreply.github.com> Date: Mon, 23 Jun 2025 18:17:49 +0200 Subject: [PATCH] Remove unnecessary --no-deps flag from pip install command and clean up pyproject.toml by removing build-system section --- com.aresvalley.Artemis.yaml | 2 +- pyproject.toml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/com.aresvalley.Artemis.yaml b/com.aresvalley.Artemis.yaml index 36d352e..db1a03d 100644 --- a/com.aresvalley.Artemis.yaml +++ b/com.aresvalley.Artemis.yaml @@ -26,7 +26,7 @@ modules: - name: artemis buildsystem: simple build-commands: - - pip3 install . --no-deps --prefix=/app + - pip3 install . --prefix=/app sources: - type: git url: https://github.com/AresValley/Artemis.git diff --git a/pyproject.toml b/pyproject.toml index d5434c9..9d6be29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,3 @@ requires-python = ">=3.12" [project.scripts] artemis = "app:main" - -[build-system] -requires = ["setuptools>=61", "wheel"] -build-backend = "setuptools.build_meta"