Skip to content

Commit 128a2b0

Browse files
committed
Upgrade optional dependencies
1 parent 5246f90 commit 128a2b0

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ repos:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
99
- repo: https://github.com/psf/black
10-
rev: "24.1.1"
10+
rev: "24.3.0"
1111
hooks:
1212
- id: black
1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.2.1
14+
rev: v0.3.3
1515
hooks:
1616
- id: ruff
1717
- repo: https://github.com/RobertCraigie/pyright-python
18-
rev: v1.1.350
18+
rev: v1.1.354
1919
hooks:
2020
- id: pyright
2121
name: pyright (system)

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010
### Added
11+
1112
- Add support for `disable_metadata_checks`, `ignore_duplicates` and `compression` arguments in `make_zim_file` function ("zimwritefs-mode")
1213

14+
### Changed
15+
16+
- Relaxed constraints on Python dependencies
17+
- Upgraded optional dependencies used for test and QA
18+
1319
## [3.3.1] - 2024-02-27
1420

1521
### Added

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ scripts = [
3636
"invoke==2.2.0",
3737
]
3838
lint = [
39-
"black==24.1.1",
40-
"ruff==0.2.1",
39+
"black==24.3.0",
40+
"ruff==0.3.3",
4141
]
4242
check = [
43-
"pyright==1.1.350",
43+
"pyright==1.1.354",
4444
]
4545
test = [
46-
"pytest==8.0.0",
46+
"pytest==8.1.1",
4747
"pytest-mock==3.12.0",
48-
"coverage==7.4.1",
48+
"coverage==7.4.4",
4949
]
5050
dev = [
51-
"pre-commit==3.5.0",
52-
"debugpy==1.8.0",
51+
"pre-commit==3.6.2",
52+
"debugpy==1.8.1",
5353
"zimscraperlib[scripts]",
5454
"zimscraperlib[lint]",
5555
"zimscraperlib[test]",

0 commit comments

Comments
 (0)