Skip to content

Commit

Permalink
Removed support for Python 3.7 (EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Aug 1, 2023
1 parent ba6cc4f commit aeaa83c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04, macos-12]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11"]

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

- Build with (and target) libzim 8.2.1

## Removed

- Support for Python 3.7 (EOL)

## [3.1.0] - 2023-05-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "setuptools >= 35.0.2", "wheel >= 0.29.0", "cython >= 0.29.34,<3.0"
build-backend = "setuptools.build_meta"

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


[tool.pytest.ini_options]
Expand Down Expand Up @@ -35,4 +35,4 @@ 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* cp37*"
test-skip = "*_arm64 cp39* cp38*"
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ classifiers =
Intended Audience :: Developers
Programming Language :: Cython
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -40,7 +39,7 @@ zim_safe = False
packages =
libzim
python_requires =
>=3.7,<3.12
>=3.8,<3.12
setup_requires =
cython >= 0.29.34,<0.30
test_requires =
Expand Down

0 comments on commit aeaa83c

Please sign in to comment.