Skip to content

Commit

Permalink
build(python): fix armv6 sha256
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Nov 16, 2023
1 parent 04d53a6 commit 39ca65a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generate_setup_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
marker = sys_platform == "linux" and platform_machine == "armv6hf"
marker = sys_platform == "linux" and platform_machine == "armv7l"
url = ${url_linux_armv6}
sha256 = ${url_linux_armv6}
sha256 = ${sha256_linux_armv6}
[wrun.exe]
group = wrun-binary
marker = sys_platform == "win32" and platform_machine == "x86"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ download_scripts =
marker = sys_platform == "linux" and platform_machine == "armv6hf"
marker = sys_platform == "linux" and platform_machine == "armv7l"
url = https://github.com/scop/wrun/releases/download/v0.0.1/wrun_0.0.1_linux_armv6
sha256 = https://github.com/scop/wrun/releases/download/v0.0.1/wrun_0.0.1_linux_armv6
sha256 = fa863cf074c672fb58885f2bdcef781754d1e9badf1f413a294ebc81942ddeb0
[wrun.exe]
group = wrun-binary
marker = sys_platform == "win32" and platform_machine == "x86"
Expand Down

0 comments on commit 39ca65a

Please sign in to comment.