Skip to content

Commit c4dfd99

Browse files
committed
Using lbzim 9.3.0
1 parent 7b1c12e commit c4dfd99

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.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.2.3-2"
10+
LIBZIM_DL_VERSION: "9.3.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.2.3-2"
9+
LIBZIM_DL_VERSION: "9.3.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.2.3-2"
5+
LIBZIM_DL_VERSION: "9.3.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.2.3-2"
5+
LIBZIM_DL_VERSION: "9.3.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
@@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Set up documentation using `mkdocs`, published on readthedocs.com (#186)
1313
- `Archive.get_random_entry()`
1414

15+
### Changed
16+
17+
- Using C++ libzim 9.3.0
18+
1519
## [3.6.0] - 2024-10-15
1620

1721
### Added

setup.py

Lines changed: 2 additions & 2 deletions
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.2.3-2")
34+
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.3.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

@@ -258,7 +258,7 @@ def _download_and_extract(self, filename: str) -> pathlib.Path:
258258
if not fpath.exists():
259259
print(f"> from {url}")
260260
with (
261-
urllib.request.urlopen(url) as response, # noqa: S310
261+
urllib.request.urlopen(url) as response, # noqa: S310 # nosec B310
262262
open(fpath, "wb") as fh, # nosec
263263
): # nosec
264264
fh.write(response.read())

0 commit comments

Comments
 (0)