diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9983849..57a6b4e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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) diff --git a/CHANGELOG.md b/CHANGELOG.md index 481ec33..e1ca8fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 8424a00..ea1fc8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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]",