mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-05 20:44:30 +08:00
Update kino version references
This commit is contained in:
parent
9e7ed7ae43
commit
c7a38c2d40
6 changed files with 8 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, "~> 0.10.0"}
|
||||
{:kino, "~> 0.11.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, "~> 0.10.0"}
|
||||
{:kino, "~> 0.11.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, "~> 0.10.0"}
|
||||
{:kino, "~> 0.11.0"}
|
||||
])
|
||||
```
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, "~> 0.10.0"},
|
||||
{:kino, "~> 0.11.0"},
|
||||
{:jason, "~> 1.4"}
|
||||
])
|
||||
```
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
```elixir
|
||||
Mix.install([
|
||||
{:kino, "~> 0.10.0"},
|
||||
{:kino, "~> 0.11.0"},
|
||||
{:kino_vega_lite, "~> 0.1.10"}
|
||||
])
|
||||
```
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
defmodule Livebook.Runtime.Definitions do
|
||||
kino = %{
|
||||
name: "kino",
|
||||
dependency: %{dep: {:kino, github: "livebook-dev/kino", override: true}, config: []}
|
||||
dependency: %{dep: {:kino, "~> 0.11.0"}, config: []}
|
||||
}
|
||||
|
||||
kino_vega_lite = %{
|
||||
|
@ -31,7 +31,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
kino_bumblebee = %{
|
||||
name: "kino_bumblebee",
|
||||
dependency: %{dep: {:kino_bumblebee, github: "livebook-dev/kino_bumblebee"}, config: []}
|
||||
dependency: %{dep: {:kino_bumblebee, "~> 0.4.0"}, config: []}
|
||||
}
|
||||
|
||||
exla = %{
|
||||
|
@ -41,7 +41,7 @@ defmodule Livebook.Runtime.Definitions do
|
|||
|
||||
torchx = %{
|
||||
name: "torchx",
|
||||
dependency: %{dep: {:torchx, "~> 0.5.1"}, config: [nx: [default_backend: Torchx.Backend]]}
|
||||
dependency: %{dep: {:torchx, ">= 0.0.0"}, config: [nx: [default_backend: Torchx.Backend]]}
|
||||
}
|
||||
|
||||
kino_explorer = %{
|
||||
|
|
Loading…
Add table
Reference in a new issue