Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- main

env:
LIBZIM_DL_VERSION: "9.8.0"
LIBZIM_DL_VERSION: "9.8.1"
MACOSX_DEPLOYMENT_TARGET: "13.0"
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
CIBW_BUILD_VERBOSITY: "3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- published

env:
LIBZIM_DL_VERSION: "9.8.0"
LIBZIM_DL_VERSION: "9.8.1"
MACOSX_DEPLOYMENT_TARGET: "13.0"
CIBW_ENVIRONMENT_PASS_LINUX: "LIBZIM_DL_VERSION"
# APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/QA.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: QA
on: [push]

env:
LIBZIM_DL_VERSION: "9.8.0"
LIBZIM_DL_VERSION: "9.8.1"
MACOSX_DEPLOYMENT_TARGET: "13.0"

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Tests
on: [push]

env:
LIBZIM_DL_VERSION: "9.8.0"
LIBZIM_DL_VERSION: "9.8.1"
MACOSX_DEPLOYMENT_TARGET: "13.0"
# we want cython traces for coverage
PROFILE: "1"
Expand All @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [macos-14, macos-15, macos-15-intel, windows-2022, windows-2025, ubuntu-22.04, ubuntu-24.04]
python: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
python: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]

steps:
- uses: actions/checkout@v6
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Changed

- Upgrade to libzim 9.8.1 and upgrade other Python dependencies, especially Cython 3.2.8 (#261)
- Drop support for free-threaded CPython 3.13t (#261)

## [3.11.0] - 2026-07-09

### Changed
Expand Down
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
requires = [
"setuptools == 82.0.1",
"setuptools == 83.0.0",
"wheel == 0.47.0",
"cython == 3.2.4",
"cython == 3.2.8",
# https://github.com/pypa/cibuildwheel/blob/v2.22/cibuildwheel/resources/constraints.txt
"delocate == 0.13.0 ; platform_system=='Windows'",
]
Expand Down Expand Up @@ -46,46 +46,46 @@ Donate = "https://www.kiwix.org/en/support-us/"

[project.optional-dependencies]
scripts = [
"invoke==2.2.1",
"invoke==3.0.3",
]
lint = [
"black==26.3.1",
"ruff==0.15.7",
"black==26.5.1",
"ruff==0.15.21",
"libzim",
"libzim[build]",
]
check = [
"pyright==1.1.408",
"pyright==1.1.411",
"libzim",
"libzim[build]",
"libzim[test]",
"types-setuptools",
]
test = [
"pytest==9.0.2",
"coverage==7.13.5",
"pytest==9.1.1",
"coverage==7.15.2",
# for cython coverage plugin
"libzim[build]",
]
build = [
"setuptools == 82.0.1",
"wheel == 0.46.3",
"cython == 3.2.4",
"setuptools == 83.0.0",
"wheel == 0.47.0",
"cython == 3.2.8",
"delocate == 0.13.0 ; platform_system=='Windows'",
]
docs = [
"mkdocs==1.6.1",
"mkdocstrings-python==2.0.3",
"mkdocstrings-python==2.0.5",
"mkdocs-material==9.7.6",
"pymdown-extensions==10.21",
"pymdown-extensions==11.0.1",
"mkdocs-gen-files==0.6.1",
"mkdocs-literate-nav==0.6.3",
"mkdocs-include-markdown-plugin==7.2.1",
"griffe==2.0.0",
"mkdocs-include-markdown-plugin==7.3.0",
"griffe==2.1.0",
]
dev = [
"pre-commit==4.5.1",
"ipython==9.11.0",
"pre-commit==4.6.0",
"ipython==9.15.0",
"types-setuptools",
"libzim[scripts]",
"libzim[lint]",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@


class Config:
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.8.0")
libzim_dl_version: str = os.getenv("LIBZIM_DL_VERSION", "9.8.1")
use_system_libzim: bool = bool(os.getenv("USE_SYSTEM_LIBZIM") or False)
download_libzim: bool = not bool(os.getenv("DONT_DOWNLOAD_LIBZIM") or False)

Expand Down
Loading