From 6abb7f185501da9581a79a67d0bd760b9011baf7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20Kubler?= <gregoire.kubler@proton.me>
Date: Mon, 6 May 2024 10:27:01 +0200
Subject: [PATCH] feat : deps are now in pyproject.toml

---
 pyproject.toml   | 2 +-
 requirements.txt | 8 --------
 2 files changed, 1 insertion(+), 9 deletions(-)
 delete mode 100644 requirements.txt

diff --git a/pyproject.toml b/pyproject.toml
index 6234dff52..4eb64fe49 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
 [project]
 name = "aidge_core"
 description="Core implementations of the operators and graph of aidge framework"
-dependencies = ["numpy"]
+dependencies = ["numpy==1.26.4"]
 requires-python = ">= 3.7"
 readme = "README.md"
 license = { file = "LICENSE" }
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 0d59c2d34..000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-#
-# This file is autogenerated by pip-compile with Python 3.11
-# by the following command:
-#
-#    pip-compile pyproject.toml
-#
-numpy==1.26.4
-    # via aidge_core (pyproject.toml)
-- 
GitLab