Point notebook deps to minimal required version of Kino (#365)

This commit is contained in:
Jonatan Kłosko 2021-06-17 20:21:23 +02:00 committed by GitHub
parent 2de997cef5
commit d6131523f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ and interact with it.
```elixir
Mix.install([
{:kino, "~> 0.1.0"},
{:kino, "~> 0.1.2"},
{:vega_lite, "~> 0.1.0"}
])
```

View file

@ -14,7 +14,7 @@ so let's add `:vega_lite` and `:kino` for that.
```elixir
Mix.install([
{:vega_lite, "~> 0.1.0"},
{:kino, "~> 0.1.0"}
{:kino, "~> 0.1.1"}
])
```