Skip to content

Commit 343a1e9

Browse files
committed
Use a newer Hy commit for pydemo.hy.
1 parent 802e5ea commit 343a1e9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_pydemo.hy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
; Get the files we need from Hy's Git repository.
1919
(import urllib.request [urlretrieve])
2020
(setv url-root "https://raw.githubusercontent.com/hylang/hy/")
21-
(setv commit "a938f8d1ea135b410929b79a126b7d1395dffb48")
21+
(setv git-ref "1.3.0")
2222
(urlretrieve
23-
f"{url-root}/{commit}/tests/resources/pydemo.hy"
23+
f"{url-root}/{git-ref}/tests/resources/pydemo.hy"
2424
(/ d "pydemo.hy"))
2525
(urlretrieve
26-
f"{url-root}/{commit}/tests/test_hy2py.py"
26+
f"{url-root}/{git-ref}/tests/test_hy2py.py"
2727
(/ d "test_hy2py.py"))
2828

2929
; Call `hy2py` on `pydemo.hy` to get a Python version, `pydemo.py`.

0 commit comments

Comments
 (0)