From 93a358ddc7842c2a992bdcbcba5acbcfa6a8c0ca Mon Sep 17 00:00:00 2001 From: Angel Ezquerra Date: Sat, 24 Aug 2024 10:46:26 +0200 Subject: [PATCH] Update arraymancer dependencies 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",