Skip to content

Commit

Permalink
Removed support for Python 3.8 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Sep 5, 2024
1 parent 1402f18 commit 98499fe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [macos-13, windows-2022, ubuntu-22.04]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleazed
## [Unreleased]

### Added

- Windows (x64) support (#91)

### Changed

- Using C++ libzim 9.2.3-2

### Removed

- Support for Python 3.8 (EOL)

## [3.4.0] - 2023-12-16

### Added
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "libzim"
version = "3.4.0"
requires-python = ">=3.8,<3.13"
requires-python = ">=3.9,<3.13"
description = "A python-facing API for creating and interacting with ZIM files"
authors = [
{name = "openZIM", email = "dev@kiwix.org"},
Expand All @@ -29,7 +29,6 @@ classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -128,7 +127,7 @@ archs = ["x86_64", "arm64"]
# skipping tests on cp <=3.9 as the wheels we produce are on unexpected combinations
# because those python versions were released before our building host version
# > requires changing wheel names
test-skip = "*_arm64 cp39* cp38*"
test-skip = "*_arm64 cp39*"

[tool.hatch.build]
exclude = [
Expand All @@ -153,7 +152,6 @@ features = ["scripts", "test"]
[tool.hatch.envs.test.env-vars]
PROFILE = "1"

# not testing on 3.8 as setuptools cannot produce editable wheel
[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12"]

Expand Down

0 comments on commit 98499fe

Please sign in to comment.