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
4 changes: 0 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ jobs:
run: |
black --check --diff .

- name: Type check with mypy
run: |
mypy l0

- name: Run tests with coverage
run: |
pytest tests/ -v --cov=l0 --cov-report=xml --cov-report=term-missing
Expand Down
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
removed:
- Removed mypy type checking from CI/CD workflow to eliminate type annotation overhead
9 changes: 0 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ dev = [
"pytest>=7.0",
"pytest-cov>=3.0",
"black>=22.0",
"mypy>=0.900",
"build>=1.3",
"scikit-learn>=1.0",
"yaml-changelog>=0.3.0",
Expand Down Expand Up @@ -62,14 +61,6 @@ Issues = "https://github.com/PolicyEngine/L0/issues"
line-length = 79
target-version = ['py313']


[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
Expand Down