Skip to content

Commit

Permalink
ci(github): fix mypy stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnhan committed Sep 11, 2024
1 parent b6d6574 commit 08930bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: |
- name: Install mypy and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install mypy
mypy .
python -m pip install .[complete] pyqt6
- name: Run mypy
run: mypy --install-types --non-interactive .

release:
name: Release
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ check_untyped_defs = false
exclude = [
"^docs/",
"^tests/",
"^build/",
"_deprecated/",
"interactive/curvefittingtool.py",
"io/plugins/",
Expand Down

0 comments on commit 08930bb

Please sign in to comment.