From 9cfe7578d2f94719dcbcd5c68c3dfb2656e4f670 Mon Sep 17 00:00:00 2001 From: Angel Ezquerra Date: Fri, 20 Sep 2024 11:30:28 +0200 Subject: [PATCH] Update arraymancer dependencies (#665) The dependency with nim was very out of date (which caused problems with nimble and nim's language server). I'm also taking the chance to make small bumps to some of the other dependencies. --- arraymancer.nimble | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arraymancer.nimble b/arraymancer.nimble index cf3a5d61..c568ba92 100644 --- a/arraymancer.nimble +++ b/arraymancer.nimble @@ -5,10 +5,10 @@ description = "A n-dimensional tensor (ndarray) library" license = "Apache License 2.0" ### Dependencies -requires "nim >= 1.0.0", - "nimblas >= 0.3.0", - "nimlapack >= 0.3.0", - "nimcuda >= 0.1.4", +requires "nim >= 1.6.0", + "nimblas >= 0.3.1", + "nimlapack >= 0.3.1", + "nimcuda >= 0.1.9", "nimcl >= 0.1.3", "clblast >= 0.0.2", "stb_image",