Skip to content
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
- id: trailing-whitespace
exclude: "tests/cis_tests/.*"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.11
rev: v0.14.13
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -34,7 +34,7 @@ repos:
hooks:
- id: gitleaks
- repo: https://github.com/adrienverge/yamllint/
rev: v1.37.1
rev: v1.38.0
hooks:
- id: yamllint
- repo: https://github.com/ComPWA/taplo-pre-commit
Expand Down
60 changes: 30 additions & 30 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@ qt = "*"
qtpy = "*"
pyqt = "*"
# pip-audit
h2 = ">=4.3.0" # Known vulnerability in <4.3.0
h2 = ">=4.3.0" # Known vulnerability in <4.3.0
brotli = ">=1.2.0"
urllib3 = ">=2.6.0" # Known vulnerability in <2.6.0
filelock = ">=3.20.1" # Known vulnerability in <3.20.1
urllib3 = ">=2.6.3" # Known vulnerability in <2.6.3
filelock = ">=3.20.3" # Known vulnerability in <3.20.3
virtualenv = ">=20.36.1" # Known vulnerability in <20.36.1

[tool.pixi.pypi-dependencies]
# PyPI dependencies, including this package to allow local editable installs
Expand Down Expand Up @@ -211,7 +212,7 @@ conda-publish = { cmd = "anaconda upload *.conda", description = "Publish the .c
] }
# Misc
# urllib3 is only used for package and deployment
audit-deps = { cmd = "pip-audit --local -s osv --ignore-vuln CVE-2026-21441", description = "Audit the package dependencies for vulnerabilities" }
audit-deps = { cmd = "pip-audit --local -s osv", description = "Audit the package dependencies for vulnerabilities" }
# Cleaning
clean = { cmd = 'rm -rf .pytest_cache .ruff_cache **/*.egg-info **/dist **/__pycache__', description = "Clean up various caches and build artifacts" }
clean-conda = { cmd = "rm -f *.conda", description = "Clean the local .conda build artifacts" }
Expand Down