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
7 changes: 6 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,12 @@ jobs:
run: uv run pyinstaller frozen.spec

- name: Install NSIS
run: choco install nsis -y
run: |
choco install nsis -y
ls C:\ProgramData\chocolatey\bin
ls "C:\Program Files (x86)\NSIS"
echo "C:\ProgramData\chocolatey\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append

- name: Print NSIS version
run: makensis -VERSION
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ repos:
- --line-length=88

- repo: https://github.com/psf/black
rev: 25.1.0
rev: 25.9.0
hooks:
- id: black
args:
- --line-length=88

- repo: https://github.com/keewis/blackdoc
rev: v0.4.1
rev: v0.4.2
hooks:
- id: blackdoc
files: '\.py$'
Expand Down Expand Up @@ -54,7 +54,7 @@ repos:

# this validates our github workflow files
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.3
rev: 0.34.0
hooks:
- id: check-github-workflows

Expand Down