From b0a5b1a33ea5f9e5800a8c5e4b20424da5002367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Spoturno?= Date: Tue, 21 Apr 2026 16:56:02 -0300 Subject: [PATCH] fix: normalize torch version to >=2.1.0 across all dependency files pyproject.toml pinned torch==2.11.0 (an invalid version), requirements.txt used >=2.1.0, and training/requirements.txt used >=2.11.0. Aligned all three to >=2.1.0 for consistency. --- pyproject.toml | 2 +- training/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1d9f720..24a7d0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.10,<4.0" -torch = "2.11.0" +torch = ">=2.1.0" transformers = ">=4.40.0" datasets = ">=2.18.0" diff --git a/training/requirements.txt b/training/requirements.txt index e3348c5..1461dcd 100644 --- a/training/requirements.txt +++ b/training/requirements.txt @@ -1,4 +1,4 @@ -torch>=2.11.0 +torch>=2.1.0 datasets>=3.6.0 loguru>=0.7.3 open-mythos \ No newline at end of file