Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### Fixed

- Constrain Nx to the supported 0.12 release line so fresh dependency
resolution does not select incompatible Nx 0.13 releases.
4 changes: 3 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ defmodule Emily.MixProject do
[
{:elixir_make, "~> 0.9"},
{:fine, "~> 0.1"},
{:nx, "~> 0.12"},
# Keep this three-segment requirement: `~> 0.12` also accepts Nx 0.13+
# until 1.0, while Emily's compiler currently targets the Nx 0.12 IR.
{:nx, "~> 0.12.0"},
# Bumblebee + Axon are declared `optional: true` because the
# only Emily module that touches either — `Emily.Bumblebee.FastKernels`
# — is wrapped in a `Code.ensure_loaded?/1` gate and elides when
Expand Down
Loading