Skip to content

Commit ba3c00b

Browse files
committed
Upgrade to libzim 9.7.0
1 parent cc6a167 commit ba3c00b

8 files changed

Lines changed: 12 additions & 8 deletions

File tree

.github/workflows/CI-wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88

99
env:
10-
LIBZIM_DL_VERSION: "9.5.1"
10+
LIBZIM_DL_VERSION: "9.7.0"
1111
MACOSX_DEPLOYMENT_TARGET: "13.0"
1212
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1313
CIBW_BUILD_VERBOSITY: "3"

.github/workflows/Publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- published
77

88
env:
9-
LIBZIM_DL_VERSION: "9.5.1"
9+
LIBZIM_DL_VERSION: "9.7.0"
1010
MACOSX_DEPLOYMENT_TARGET: "13.0"
1111
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1212
# APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step

.github/workflows/QA.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: QA
22
on: [push]
33

44
env:
5-
LIBZIM_DL_VERSION: "9.5.1"
5+
LIBZIM_DL_VERSION: "9.7.0"
66
MACOSX_DEPLOYMENT_TARGET: "13.0"
77

88
jobs:

.github/workflows/Tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22
on: [push]
33

44
env:
5-
LIBZIM_DL_VERSION: "9.5.1"
5+
LIBZIM_DL_VERSION: "9.7.0"
66
MACOSX_DEPLOYMENT_TARGET: "13.0"
77
# we want cython traces for coverage
88
PROFILE: "1"

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Upgrade to libzim 9.7.0 (#254)
13+
1014
## [3.9.0] - 2026-03-24
1115

1216
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools == 82.0.1",
4-
"wheel == 0.46.3",
4+
"wheel == 0.47.0",
55
"cython == 3.2.4",
66
# https://github.com/pypa/cibuildwheel/blob/v2.22/cibuildwheel/resources/constraints.txt
77
"delocate == 0.13.0 ; platform_system=='Windows'",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
class Config:
34-
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.5.1")
34+
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.7.0")
3535
use_system_libzim: bool = bool(os.getenv("USE_SYSTEM_LIBZIM") or False)
3636
download_libzim: bool = not bool(os.getenv("DONT_DOWNLOAD_LIBZIM") or False)
3737

tests/test_libzim_creator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ def test_creator_verbose(fpath, verbose):
187187
lines = output.splitlines()
188188
if verbose:
189189
assert "T:" in output
190-
assert len(lines) >= 5
190+
assert len(lines) >= 7
191191
else:
192-
assert len(lines) == 2
192+
assert len(lines) == 4
193193

194194

195195
def test_creator_compression(fpath, lipsum_item):

0 commit comments

Comments
 (0)