Skip to content

Commit

Permalink
Merge pull request #407 from openzim/upgrade_deps
Browse files Browse the repository at this point in the history
Upgrade dependencies, including wombat 3.8.2
  • Loading branch information
benoit74 authored Oct 8, 2024
2 parents 38e5902 + 29307e6 commit f56bdea
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 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.8.0"
rev: "24.10.0"
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.7
rev: v0.6.9
hooks:
- id: ruff
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.375
rev: v1.1.383
hooks:
- id: pyright
name: pyright (system)
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Enrich test website with img srcset situations (in preparation for #403)

### Changed

- Upgrade dependencies, including wombat 3.8.2 (#407)

### Fixed

- HTML document can be retrieved as `fetch` resource type (#405)
Expand Down
2 changes: 1 addition & 1 deletion openzim.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ execute_after=[

[files.assets.actions."wombat.js"]
action="get_file"
source="https://cdn.jsdelivr.net/npm/@webrecorder/[email protected].0/dist/wombat.js"
source="https://cdn.jsdelivr.net/npm/@webrecorder/[email protected].2/dist/wombat.js"
target_file="wombat.js"

[files.assets.actions."wombatSetup.js"] # fallback if this script has not been properly build (should happen only in dev)
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ scripts = [
"PyYAML==6.0.2", # used to parse fuzzy rules and generate Python/JS code ; also update version in build-system above and in build_js.sh
]
lint = [
"black==24.8.0",
"ruff==0.6.3",
"black==24.10.0",
"ruff==0.6.9",
]
check = [
"pyright==1.1.379",
"pyright==1.1.383",
]
test = [
"pytest==8.3.2",
"pytest==8.3.3",
"coverage==7.6.1",
]
dev = [
"pre-commit==3.8.0",
"debugpy==1.8.5",
"pre-commit==4.0.0",
"debugpy==1.8.6",
"warc2zim[scripts]",
"warc2zim[lint]",
"warc2zim[test]",
Expand Down

0 comments on commit f56bdea

Please sign in to comment.