Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit74 committed Nov 13, 2024
1 parent f434258 commit 314fb40
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: "24.4.2"
rev: "24.10.0"
hooks:
- id: black
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.1
rev: v0.7.3
hooks:
- id: ruff
- repo: https://github.com/RobertCraigie/pyright-python
rev: v1.1.370
rev: v1.1.388
hooks:
- id: pyright
name: pyright (system)
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ description = "Make ZIM files from DevDocs.io"
readme = "README.md"
dependencies = [
"requests==2.32.3",
"pydantic==2.8.2",
"pydantic==2.9.2",
"zimscraperlib==4.0.0",
"Jinja2==3.1.3",
"Jinja2==3.1.4",
"beautifulsoup4==4.12.3",
]
dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"]
Expand All @@ -21,19 +21,19 @@ scripts = [
"invoke==2.2.0",
]
lint = [
"black==24.4.2",
"ruff==0.5.1",
"black==24.10.0",
"ruff==0.7.3",
]
check = [
"pyright==1.1.374",
"pyright==1.1.388",
]
test = [
"pytest==8.2.2",
"coverage==7.5.4",
"pytest==8.3.3",
"coverage==7.6.4",
]
dev = [
"pre-commit==3.7.1",
"debugpy==1.8.2",
"pre-commit==4.0.1",
"debugpy==1.8.8",
"devdocs2zim[scripts]",
"devdocs2zim[lint]",
"devdocs2zim[test]",
Expand Down

0 comments on commit 314fb40

Please sign in to comment.