Skip to content

Commit

Permalink
Remove mypy for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jakep-allenai committed Jan 30, 2025
1 parent d36e556 commit 7fbbb57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ jobs:
name: Lint
run: ruff check .

- python: "3.11"
task:
name: Type check
run: mypy .
# Removing mypy for now, as it isn't handling async things correctly
# - python: "3.11"
# task:
# name: Type check
# run: mypy .

- python: "3.11"
task:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ ignore = ["E722"] #igore bare except
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
exclude = ["olmocr/train/molmo/", "tests/*"]

[[tool.mypy.overrides]]
module = "tests.*"
Expand Down

0 comments on commit 7fbbb57

Please sign in to comment.