2 parents a1034ca + e5e7d78 commit 990ad50Copy full SHA for 990ad50
2 files changed
RELEASE.md
@@ -0,0 +1,4 @@
1
+### Fixed
2
+
3
+- Constrain Nx to the supported 0.12 release line so fresh dependency
4
+ resolution does not select incompatible Nx 0.13 releases.
mix.exs
@@ -87,7 +87,9 @@ defmodule Emily.MixProject do
87
[
88
{:elixir_make, "~> 0.9"},
89
{:fine, "~> 0.1"},
90
- {:nx, "~> 0.12"},
+ # Keep this three-segment requirement: `~> 0.12` also accepts Nx 0.13+
91
+ # until 1.0, while Emily's compiler currently targets the Nx 0.12 IR.
92
+ {:nx, "~> 0.12.0"},
93
# Bumblebee + Axon are declared `optional: true` because the
94
# only Emily module that touches either — `Emily.Bumblebee.FastKernels`
95
# — is wrapped in a `Code.ensure_loaded?/1` gate and elides when
0 commit comments