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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python 3.8
uses: actions/setup-python@v5
- name: Set up Python 3.9
uses: actions/setup-python@v6
with:
python-version: 3.8
python-version: 3.9

- name: Install python dependencies
run: |
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@ exclude: ^seekpath/hpkot/band_path_data

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: double-quote-string-fixer

- repo: https://github.com/ikamensh/flynt/
rev: 1.0.1
rev: 1.0.6
hooks:
- id: flynt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.0
rev: v0.14.14
hooks:
- id: ruff-format
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]

- repo: https://github.com/PyCQA/prospector
rev: v1.11.0
rev: v1.17.3
hooks:
- id: prospector
language: system
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[MASTER]
disable=import-outside-toplevel,bad-continuation,locally-disabled,invalid-name,too-many-locals,too-many-statements,too-many-return-statements,too-many-branches
disable=import-outside-toplevel,locally-disabled,invalid-name,too-many-locals,too-many-statements,too-many-return-statements,too-many-branches

[DESIGN]

Expand Down