File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 33.venv
44* .egg-info
55
6- .mypy_cache
76.ruff_cache
87
98.coverage
Original file line number Diff line number Diff line change 1- .PHONY : help bootstrap lint test clean
1+ .PHONY : help bootstrap lint test build clean
22DEFAULT : help
33
44VENV = .venv
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
1415bootstrap :
@@ -18,7 +19,6 @@ bootstrap:
1819
1920lint : $(VENV )
2021 $(PYTHON ) -m ruff check based tests
21- $(PYTHON ) -m mypy --strict based
2222
2323test : $(VENV )
2424 $(PYTHON ) -m pytest
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ mysql = [
4040]
4141dev = [
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" ,
You can’t perform that action at this time.
0 commit comments