Skip to content

Commit 6314a14

Browse files
committed
Using libzim 8.2.1
1 parent 2dd7b0f commit 6314a14

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- published
77

88
env:
9-
LIBZIM_DL_VERSION: "8.2.0"
9+
LIBZIM_DL_VERSION: "8.2.1"
1010
MACOSX_DEPLOYMENT_TARGET: "11.0"
1111
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1212
# APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step
@@ -68,7 +68,7 @@ jobs:
6868
security unlock-keychain -p mysecretpassword ${APPLE_SIGNING_KEYCHAIN_PATH}
6969
7070
- name: Build wheels
71-
uses: pypa/cibuildwheel@v2.12.1
71+
uses: pypa/cibuildwheel@v2.14
7272

7373
- name: Cleanup Apple Keychain
7474
if: matrix.os == 'macos-12'

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: test
22
on: [push]
33

44
env:
5-
LIBZIM_DL_VERSION: "2023-07-13"
5+
LIBZIM_DL_VERSION: "8.2.1"
66

77
jobs:
88
lint:
99
runs-on: ubuntu-20.04
1010
steps:
11-
- uses: actions/checkout@v3.1.0
11+
- uses: actions/checkout@v3
1212

1313
- name: Set up Python ${{ matrix.python }}
14-
uses: actions/setup-python@v4.2.0
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: "3.11"
1717
architecture: x64
@@ -30,10 +30,10 @@ jobs:
3030
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
3131

3232
steps:
33-
- uses: actions/checkout@v3.1.0
33+
- uses: actions/checkout@v3
3434

3535
- name: Set up Python ${{ matrix.python }}
36-
uses: actions/setup-python@v4.2.0
36+
uses: actions/setup-python@v4
3737
with:
3838
python-version: ${{ matrix.python }}
3939
architecture: x64

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88

99
env:
10-
LIBZIM_DL_VERSION: "2023-07-13"
10+
LIBZIM_DL_VERSION: "8.2.1"
1111
MACOSX_DEPLOYMENT_TARGET: "11.0"
1212
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
1313

@@ -30,7 +30,7 @@ jobs:
3030
platforms: all
3131

3232
- name: Build wheels
33-
uses: pypa/cibuildwheel@v2.12.1
33+
uses: pypa/cibuildwheel@v2.14
3434

3535
- uses: actions/upload-artifact@v3
3636
with:

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+
- Build with (and target) libzim 8.2.1
13+
814
## [3.1.0] - 2023-05-01
915

1016
### Changed

setup.py

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

2929

3030
class Config:
31-
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "8.2.0")
31+
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "8.2.1")
3232
use_system_libzim: bool = bool(os.getenv("USE_SYSTEM_LIBZIM", False))
3333
download_libzim: bool = not bool(os.getenv("DONT_DOWNLOAD_LIBZIM", False))
3434

0 commit comments

Comments
 (0)