Skip to content

Commit 5df295b

Browse files
committed
fuck mypy
1 parent 4c186f5 commit 5df295b

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
.venv
44
*.egg-info
55

6-
.mypy_cache
76
.ruff_cache
87

98
.coverage

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help bootstrap lint test clean
1+
.PHONY: help bootstrap lint test build clean
22
DEFAULT: help
33

44
VENV = .venv
@@ -9,6 +9,7 @@ help:
99
@echo " bootstrap - setup development environment"
1010
@echo " lint - run static code analysis"
1111
@echo " test - run project tests"
12+
@echo " build - build packages"
1213
@echo " clean - clean environment and remove development artifacts"
1314

1415
bootstrap:
@@ -18,7 +19,6 @@ bootstrap:
1819

1920
lint: $(VENV)
2021
$(PYTHON) -m ruff check based tests
21-
$(PYTHON) -m mypy --strict based
2222

2323
test: $(VENV)
2424
$(PYTHON) -m pytest

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ mysql = [
4040
]
4141
dev = [
4242
"SQLAlchemy-Utils>=0.41,<1",
43-
"mypy>=1.12,<2",
4443
"psycopg2-binary>=2.9,<3",
4544
"pytest-asyncio>=0.24,<1",
4645
"pytest-cov>=5,<6",

0 commit comments

Comments
 (0)