Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.
Open
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
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Steps to reproduce the behavior:

**System [please complete the following information]:**

- OS: e.g. [Ubuntu 18.04]
- Language Version: [e.g. Python 3.8]
- Virtual environment: [e.g. Conda]
- OS: e.g. [Ubuntu 18.04]
- Language Version: [e.g. Python 3.8]
- Virtual environment: [e.g. Conda]

**Additional context**

Expand Down
8 changes: 4 additions & 4 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

<!-- Please fill in the appropriate checklist below (delete whatever is not relevant). These are the most common things requested on pull requests (PRs). -->

- [ ] This comment contains a description of changes (with reason)
- [ ] Referenced issue is linked
- [ ] If you've fixed a bug or added code that should be tested, add tests!
- [ ] Documentation in `docs` is updated
- [ ] This comment contains a description of changes (with reason)
- [ ] Referenced issue is linked
- [ ] If you've fixed a bug or added code that should be tested, add tests!
- [ ] Documentation in `docs` is updated

**Description of changes**

Expand Down
22 changes: 11 additions & 11 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ ci:
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. TODO: remove flake8 in future
rev: "v0.1.1"
rev: "v0.12.0"
hooks:
- id: ruff
args: [--fix]
- repo: https://github.com/psf/black
rev: 23.10.1
rev: 25.1.0
hooks:
- id: black
name: black
entry: black
language: system
types: [python]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0 # Use the ref you want to point at
rev: v5.0.0 # Use the ref you want to point at
hooks:
- id: check-added-large-files
name: Check for added large files
Expand All @@ -55,14 +55,14 @@ repos:
entry: end-of-file-fixer
language: system
types: [text]
stages: [commit, push, manual]
stages: [pre-commit, pre-push, manual]
exclude: docs/
- id: trailing-whitespace
name: Trim Trailing Whitespace
entry: trailing-whitespace-fixer
language: system
types: [text]
stages: [commit, push, manual]
stages: [pre-commit, pre-push, manual]
- repo: https://github.com/pocc/pre-commit-hooks
rev: v1.3.5
hooks:
Expand All @@ -89,7 +89,7 @@ repos:
]
files: \.(c|h|cpp)$
- repo: https://github.com/pycqa/flake8
rev: "6.1.0" # pick a git hash / tag to point to
rev: "7.3.0" # pick a git hash / tag to point to
hooks:
- id: flake8
name: flake8
Expand All @@ -99,7 +99,7 @@ repos:
require_serial: true
additional_dependencies: [Flake8-pyproject]
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.1
rev: v2.3.1
hooks:
- id: autoflake
name: autoflake
Expand All @@ -113,7 +113,7 @@ repos:
- "--remove-duplicate-keys"
- "--remove-unused-variables"
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.20.0
hooks:
- id: pyupgrade
name: pyupgrade
Expand All @@ -123,11 +123,11 @@ repos:
types: [python]
args: [--py38-plus]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.3
rev: v4.0.0-alpha.8
hooks:
- id: prettier
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 6.0.1
hooks:
- id: isort
name: isort (python)
Expand All @@ -145,7 +145,7 @@ repos:
types: [file]
files: (\.cmake|CMakeLists.txt)(.in)?$
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.27.0
rev: 0.33.1
hooks:
- id: check-github-actions
- id: check-github-workflows
Loading