Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update most test/lint dependencies #313

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/regen-examples-and-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ env:
FORCE_COLOR: 1 # Request colored output from CLI tools supporting it
CLICOLOR_FORCE: 1 # recognized by uv

permissions: {}

jobs:
regen_examples_and_docs:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions: {}

jobs:
test-website:
runs-on: ubuntu-latest
Expand Down
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: name-tests-test
args: [--pytest-test-first]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.1 # must match pyproject.toml
rev: v0.9.4 # must match pyproject.toml
hooks:
- id: ruff
- id: ruff-format
Expand All @@ -21,9 +21,9 @@ repos:
hooks:
- id: blacken-docs
language: python # means renovate will update the `additional_dependencies` for the hook
additional_dependencies: [black==24.10.0]
additional_dependencies: [black==25.1.0]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.1
hooks:
- id: codespell
language: python # means renovate will update the `additional_dependencies` for the hook
Expand All @@ -33,7 +33,7 @@ repos:
hooks:
- id: clevercsv-standardize
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.43.0
rev: v0.44.0
hooks:
- id: markdownlint-fix
args: ["--ignore", "stats_website/.snippets"]
Expand All @@ -50,11 +50,11 @@ repos:
hooks:
- id: validate-pyproject
- repo: https://github.com/woodruffw/zizmor-pre-commit
rev: v1.0.1
rev: v1.3.0
hooks:
- id: zizmor
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.31.0
rev: 0.31.1
hooks:
- id: check-github-workflows
- id: check-renovate
Expand All @@ -63,7 +63,7 @@ repos:
- "json5"
# `actionlint` hook, for verifying correct syntax in GitHub Actions workflows.
- repo: https://github.com/rhysd/actionlint
rev: v1.7.6
rev: v1.7.7
hooks:
- id: actionlint
additional_dependencies:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ dev = [
"MarkDown==3.7",
"mkdocs==1.6.1",
"mkdocs-macros-plugin==1.3.7",
"mkdocs-material==9.5.49",
"mkdocs-material==9.5.50",
"mkdocstrings==0.27.0",
"mkdocstrings-python==1.13.0",
"beautifulsoup4>=4,<5",
"covdefaults==2.3.0",
"coverage==7.6.10",
"Markdown>=3,<4",
"pyright==1.1.391",
"pyright==1.1.393",
"pytest==8.3.4",
"pytest-antilru==2.0.0",
"pytest-asyncio==0.25.2",
"pytest-asyncio==0.25.3",
"pytest-dependency==0.6.0",
"pytest-mock==3.14.0",
"pytest-subtests==0.14.1",
Expand Down
Loading