From a90e1f40e6adb638bd3598d00459027ecae3eb8b Mon Sep 17 00:00:00 2001 From: benoit74 Date: Fri, 14 Feb 2025 15:37:34 +0000 Subject: [PATCH] Upgrade dependencies especially zimscraperlib 5.1.1 --- .pre-commit-config.yaml | 4 ++-- CHANGELOG.md | 4 ++++ pyproject.toml | 12 ++++++------ 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b362d62..c90dbf2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,11 +11,11 @@ repos: hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.9.4 + rev: v0.9.6 hooks: - id: ruff - repo: https://github.com/RobertCraigie/pyright-python - rev: v1.1.393 + rev: v1.1.394 hooks: - id: pyright name: pyright (system) diff --git a/CHANGELOG.md b/CHANGELOG.md index b64352e..957f6d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Upgrade dependencies especially zimscraperlib 5.1.1 (#439) + ## [2.2.1] - 2024-02-07 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 21d4e29..71138d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,13 +10,13 @@ readme = "README.md" dependencies = [ "warcio==1.7.5", "requests==2.32.3", - "zimscraperlib==5.1.0", + "zimscraperlib==5.1.1", "jinja2==3.1.5", # to support possible brotli content in warcs, must be added separately "brotlipy==0.7.0", "tinycss2==1.4.0", - "beautifulsoup4==4.13.1", # used to parse base href - "lxml==5.3.0", # used by beautifulsoup4 for parsing html + "beautifulsoup4==4.13.3", # used to parse base href + "lxml==5.3.1", # used by beautifulsoup4 for parsing html "python-dateutil==2.9.0.post0", "multipart==1.2.1", ] @@ -36,14 +36,14 @@ scripts = [ ] lint = [ "black==25.1.0", - "ruff==0.9.4", + "ruff==0.9.6", ] check = [ - "pyright==1.1.393", + "pyright==1.1.394", ] test = [ "pytest==8.3.4", - "coverage==7.6.10", + "coverage==7.6.12", ] dev = [ "pre-commit==4.1.0",