Upgrade dependencies especially zimscraperlib 5.1.1

This commit is contained in:
benoit74 2025-02-14 15:37:34 +00:00
parent 62d3fe556c
commit a90e1f40e6
No known key found for this signature in database
GPG key ID: B89606434FC7B530
3 changed files with 12 additions and 8 deletions

View file

@ -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)

View file

@ -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

View file

@ -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",