Skip to content

Commit 2dce834

Browse files
committed
Using libzim 9
1 parent 0525755 commit 2dce834

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

.github/workflows/release.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: "8.2.1-1"
9+
LIBZIM_DL_VERSION: "9.0.0"
1010
MACOSX_DEPLOYMENT_TARGET: "12.0"
1111
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1212
# APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step

.github/workflows/test.yml

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

44
env:
5-
LIBZIM_DL_VERSION: "nightly"
5+
LIBZIM_DL_VERSION: "9.0.0"
66
MACOSX_DEPLOYMENT_TARGET: "12.0"
77

88
jobs:

.github/workflows/wheels.yml

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: "nightly"
10+
LIBZIM_DL_VERSION: "9.0.0"
1111
MACOSX_DEPLOYMENT_TARGET: "12.0"
1212
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1313
CIBW_BUILD_VERBOSITY: "3"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- Using C++ libzim 9.0.0
13+
814
## [3.2.0] - 2023-09-15
915

1016
### Added

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ test_requires =
4848

4949
[options.package_data]
5050
libzim =
51-
libzim.8.dylib
52-
libzim.so.8
51+
libzim.9.dylib
52+
libzim.so.9
5353

5454
[isort]
5555
profile = black

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
class Config:
32-
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "8.2.1-1")
32+
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.0.0")
3333
use_system_libzim: bool = bool(os.getenv("USE_SYSTEM_LIBZIM", False))
3434
download_libzim: bool = not bool(os.getenv("DONT_DOWNLOAD_LIBZIM", False))
3535

@@ -62,7 +62,7 @@ class Config:
6262
@property
6363
def libzim_major(self) -> str:
6464
# assuming nightlies are for version 8.x
65-
return 8 if self.is_nightly else self.libzim_dl_version[0]
65+
return 9 if self.is_nightly else self.libzim_dl_version[0]
6666

6767
@property
6868
def found_libzim(self) -> str:

0 commit comments

Comments
 (0)