Skip to content

Commit aeaa83c

Browse files
committed
Removed support for Python 3.7 (EOL)
1 parent ba6cc4f commit aeaa83c

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [ubuntu-22.04, macos-12]
30-
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
30+
python: ["3.8", "3.9", "3.10", "3.11"]
3131

3232
steps:
3333
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Build with (and target) libzim 8.2.1
1313

14+
## Removed
15+
16+
- Support for Python 3.7 (EOL)
17+
1418
## [3.1.0] - 2023-05-01
1519

1620
### Changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [ "setuptools >= 35.0.2", "wheel >= 0.29.0", "cython >= 0.29.34,<3.0"
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
6-
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
6+
target-version = ['py38', 'py39', 'py310', 'py311']
77

88

99
[tool.pytest.ini_options]
@@ -35,4 +35,4 @@ archs = ["x86_64", "arm64"]
3535
# skipping tests on cp <=3.9 as the wheels we produce are on unexpected combinations
3636
# because those python versions were released before our building host version
3737
# > requires changing wheel names
38-
test-skip = "*_arm64 cp39* cp38* cp37*"
38+
test-skip = "*_arm64 cp39* cp38*"

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ classifiers =
2424
Intended Audience :: Developers
2525
Programming Language :: Cython
2626
Programming Language :: Python :: 3
27-
Programming Language :: Python :: 3.7
2827
Programming Language :: Python :: 3.8
2928
Programming Language :: Python :: 3.9
3029
Programming Language :: Python :: 3.10
@@ -40,7 +39,7 @@ zim_safe = False
4039
packages =
4140
libzim
4241
python_requires =
43-
>=3.7,<3.12
42+
>=3.8,<3.12
4443
setup_requires =
4544
cython >= 0.29.34,<0.30
4645
test_requires =

0 commit comments

Comments
 (0)