From abe7947ec079840b4e1c7305480752fd017569ad Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Mon, 16 Oct 2023 11:02:40 +0200 Subject: [PATCH] Fix CI by downgrading torch on fastai E2E (#2518) --- e2e/fastai/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/fastai/pyproject.toml b/e2e/fastai/pyproject.toml index ebc19f6328ee..66fcb393d988 100644 --- a/e2e/fastai/pyproject.toml +++ b/e2e/fastai/pyproject.toml @@ -12,4 +12,4 @@ authors = ["The Flower Authors "] python = ">=3.8,<3.10" flwr = { path = "../../", develop = true, extras = ["simulation"] } fastai = "^2.7.12" -torch = ">=2.0.0, !=2.0.1" +torch = ">=2.0.0, !=2.0.1, < 2.1.0"