Skip to content

Commit b127c51

Browse files
💕 Bump to Hugo 0.146.2
1 parent 9c02652 commit b127c51

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pip install . # or pip install -e .
197197

198198
##### Linux
199199

200-
First, install [Zig](https://ziglang.org/download/) on your Linux machine, and set the `USE_ZIG`, `GOOS`, and `GOARCH` environment variable prior to installing the package:
200+
Set the `USE_ZIG`, `GOOS`, and `GOARCH` environment variable prior to installing the package:
201201

202202
Say, on an `amd64` Linux machine:
203203

@@ -228,7 +228,7 @@ Linkage against MUSL is not tested in CI at this time, but it should work in the
228228

229229
##### Windows
230230

231-
First, install [Zig](https://ziglang.org/download/) on your Windows machine, and set these environment variables prior to installing the package:
231+
Set these environment variables prior to installing the package:
232232

233233
Say, on an `amd64` Windows machine:
234234

hugo/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from pathlib import Path
1111
from sys import platform as sysplatform
1212

13-
HUGO_VERSION = "0.146.1"
13+
HUGO_VERSION = "0.146.2"
1414
FILE_EXT = ".exe" if sysplatform == "win32" else ""
1515
HUGO_PLATFORM = {"darwin": "darwin", "linux": "linux", "win32": "windows"}[sysplatform]
1616

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
requires = [
33
"setuptools>=77.0.3",
44
# linux s390x and windows arm64 wheels are not yet available
5+
# skipping a marker for windows arm64 as nested markers are
6+
# not supported in PEP 508 AFAIU
57
"ziglang==0.14.0; platform_machine != 's390x'",
6-
"ziglang==0.14.0; sys_platform != 'win32' or platform_machine != 'arm64'",
78
]
89
build-backend = "setuptools.build_meta"
910

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# ------ Hugo build configuration and constants ------------------------------------
1515

1616
# Also update hugo/cli.py
17-
HUGO_VERSION = "0.146.1"
17+
HUGO_VERSION = "0.146.2"
1818

1919
# The Go toolchain will download the tarball into the hugo_cache/ directory.
2020
# We will point the build command to that location to build Hugo from source

0 commit comments

Comments
 (0)