From f37506f40d098ebcb3c0e1a24cd7e1381b08f5dc Mon Sep 17 00:00:00 2001 From: joelpaulkoch <64319336+joelpaulkoch@users.noreply.github.com> Date: Fri, 18 Nov 2022 23:25:07 +0100 Subject: [PATCH] Update your_first_axon_model.livemd With version 0.3.0 specified this resulted in the following error: Unchecked dependencies for environment dev: * nx (https://github.com/elixir-nx/nx.git) the dependency does not match the requirement "~> 0.3.0", got "0.4.0" So I guess it's a good idea to either remove the version or the github reference (and update the version). Not sure which way you want to follow. --- guides/model_creation/your_first_axon_model.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/model_creation/your_first_axon_model.livemd b/guides/model_creation/your_first_axon_model.livemd index d035fb830..88c83def6 100644 --- a/guides/model_creation/your_first_axon_model.livemd +++ b/guides/model_creation/your_first_axon_model.livemd @@ -5,7 +5,7 @@ ```elixir Mix.install([ {:axon, github: "elixir-nx/axon"}, - {:nx, "~> 0.3.0", github: "elixir-nx/nx", sparse: "nx", override: true}, + {:nx, github: "elixir-nx/nx", sparse: "nx", override: true}, {:kino, "~> 0.7.0"} ]) ```