Skip to content

Commit 0789c65

Browse files
committed
Fix pythonx: esptool to 5.0.2 release
Script was causing errors due esptool python incompatibilities ("Click" dependency apparently). Sin comentario, but we were using a dev commit before.. so let's see. Also mark uf2tool as runtime false. Signed-off-by: Peter M <[email protected]>
1 parent 656255a commit 0789c65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/esptool_helper.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defmodule ExAtomVM.EsptoolHelper do
1919
version = "0.0.0"
2020
requires-python = "==3.13.*"
2121
dependencies = [
22-
"esptool @ git+https://github.com/espressif/esptool.git@6f0d779"
22+
"esptool==5.0.2"
2323
]
2424
""")
2525

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ defmodule ExAtomVM.MixProject do
3232
# Run "mix help deps" to learn about dependencies.
3333
defp deps do
3434
[
35-
{:uf2tool, "1.1.0"},
35+
{:uf2tool, "1.1.0", runtime: false},
3636
{:ex_doc, "~> 0.20", only: :dev, runtime: false},
3737
{:pythonx, "~> 0.4.0", runtime: false, optional: true},
3838
{:req, "~> 0.5.0", runtime: false, optional: true}

0 commit comments

Comments
 (0)