Skip to content

Commit b563f62

Browse files
authored
Merge pull request #34 from bbc2/pyrefly
Use pyrefly for type checking
2 parents 8354e9e + d63b244 commit b563f62

File tree

4 files changed

+311
-260
lines changed

4 files changed

+311
-260
lines changed

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ check-tests:
1111

1212
.PHONY: check-lint
1313
check-lint:
14-
mypy --python-version 3.13 ${SRC}
15-
mypy --python-version 3.9 ${SRC}
14+
pyrefly check ${SRC}
1615
ruff check --ignore I ${SRC}
1716

1817
.PHONY: check

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies = [
2323

2424
[dependency-groups]
2525
dev = [
26-
"mypy>=1.15.0",
26+
"pyrefly>=0.16.2",
2727
"pytest>=8.3.4",
2828
"pytest-benchmark>=5.1.0",
2929
"pytest-cov>=6.0.0",

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@ max-line-length = 100
44

55
[metadata]
66
description_file = README.md
7-
8-
[mypy]
9-
check_untyped_defs = true

0 commit comments

Comments
 (0)