Skip to content

Commit

Permalink
add missing stub packages
Browse files Browse the repository at this point in the history
  • Loading branch information
CunliangGeng committed Apr 12, 2024
1 parent 55690bf commit ce2c24d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/format-typing-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ruff
- name: Install ruff and mypy
run: |
pip install ruff mypy types-toml types-Deprecated typing_extensions
pip install ruff mypy typing_extensions types-Deprecated types-beautifulsoup4 types-jsonschema pandas-stubs
- name: Get all changed python files
id: changed-python-files
uses: tj-actions/changed-files@v44
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ dev = [
"coverage[toml]",
# static typing
"mypy",
"types-toml",
"types-Deprecated",
"typing_extensions",
# stub packages
"types-Deprecated",
"types-beautifulsoup4",
"types-jsonschema",
"pandas-stubs",
# docs
"mkdocs",
"mkdocs-material",
Expand Down

0 comments on commit ce2c24d

Please sign in to comment.