Skip to content

Commit e5c74db

Browse files
committed
remove mypy
1 parent 2fe03bb commit e5c74db

2 files changed

Lines changed: 0 additions & 23 deletions

File tree

.github/workflows/lint-code.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,6 @@ jobs:
3737
- name: ruff --> Check code formatting
3838
run: ruff format --check .
3939

40-
# Use mypy for static type checking
41-
mypy-check:
42-
runs-on: ubuntu-latest
43-
steps:
44-
- name: Checkout repo
45-
uses: actions/checkout@v4
46-
- name: Set up Python
47-
uses: actions/setup-python@v4
48-
with:
49-
python-version: "3.14"
50-
- name: Install dependencies
51-
run: |
52-
python -m pip install --upgrade pip
53-
pip install mypy
54-
# Start by installing type stubs
55-
- name: mypy --> Install stubs
56-
run: mypy --install-types --non-interactive .
57-
5840
# Use pip-check-reqs/pip-missing-reqs to check for missing dependencies
5941
requirements-check:
6042
runs-on: ubuntu-latest

pyproject.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ ignore = [
1818
"E741", # Ambiguous variable name
1919
]
2020

21-
[tool.mypy]
22-
ignore_missing_imports = true
23-
follow_imports = 'skip'
24-
exclude = "build"
25-
2621
[project]
2722
name = "dataflow_transfer"
2823
version = "1.0.3"

0 commit comments

Comments
 (0)