Skip to content

Commit

Permalink
Merge pull request #368 from openzim/release
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
benoit74 committed Aug 9, 2024
2 parents a0f8020 + bc06e85 commit ad5adcd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ repos:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: "24.4.2"
rev: "24.8.0"
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.9
rev: v0.5.7
hooks:
- id: ruff
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.367
rev: v1.1.375
hooks:
- id: pyright
name: pyright (system)
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Enhance integration test to assert final content of the ZIM (#287)
- Stop fetching and passing browsertrix crawler version as scraperSuffix to warc2zim (#354)
- Do not log number of WARC files found (#357)
- Upgrade dependencies (warc2zim 2.1.0)

### Fixed

Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
"requests==2.32.3",
"inotify==0.2.10",
"tld==0.13",
"warc2zim @ git+https://github.com/openzim/warc2zim@main",
"warc2zim==2.1.0",
]
dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"]

Expand All @@ -26,19 +26,19 @@ scripts = [
"invoke==2.2.0",
]
lint = [
"black==24.4.2",
"ruff==0.4.9",
"black==24.8.0",
"ruff==0.5.7",
]
check = [
"pyright==1.1.367",
"pyright==1.1.375",
]
test = [
"pytest==8.2.2",
"coverage==7.5.3",
"pytest==8.3.2",
"coverage==7.6.1",
]
dev = [
"pre-commit==3.7.1",
"debugpy==1.8.1",
"pre-commit==3.8.0",
"debugpy==1.8.5",
"selenium==4.23.0", # used in daily tests, convenient for dev purpose (autocompletion)
"zimit[scripts]",
"zimit[lint]",
Expand Down

0 comments on commit ad5adcd

Please sign in to comment.