# SPDX-FileCopyrightText: 2023 Jeff Epler # # SPDX-License-Identifier: MIT .PHONY: mypy mypy: venv/bin/mypy venv/bin/mypy # Update CONTRIBUTING.md if these commands change venv/bin/mypy: python -mvenv venv venv/bin/pip install -r requirements-dev.txt .PHONY: clean clean: rm -rf venv