We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pydemo.hy
1 parent 802e5ea commit 343a1e9Copy full SHA for 343a1e9
1 file changed
tests/test_pydemo.hy
@@ -18,12 +18,12 @@
18
; Get the files we need from Hy's Git repository.
19
(import urllib.request [urlretrieve])
20
(setv url-root "https://raw.githubusercontent.com/hylang/hy/")
21
- (setv commit "a938f8d1ea135b410929b79a126b7d1395dffb48")
+ (setv git-ref "1.3.0")
22
(urlretrieve
23
- f"{url-root}/{commit}/tests/resources/pydemo.hy"
+ f"{url-root}/{git-ref}/tests/resources/pydemo.hy"
24
(/ d "pydemo.hy"))
25
26
- f"{url-root}/{commit}/tests/test_hy2py.py"
+ f"{url-root}/{git-ref}/tests/test_hy2py.py"
27
(/ d "test_hy2py.py"))
28
29
; Call `hy2py` on `pydemo.hy` to get a Python version, `pydemo.py`.
0 commit comments