Add, use requirements-dev.txt

This commit is contained in:
Jeff Epler 2023-12-06 12:21:43 -06:00
parent 52626cb84c
commit 2b5ec65bff
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE
2 changed files with 7 additions and 1 deletions

View file

@ -9,7 +9,7 @@ mypy: venv/bin/mypy
# Update CONTRIBUTING.md if these commands change # Update CONTRIBUTING.md if these commands change
venv/bin/mypy: venv/bin/mypy:
python -mvenv venv python -mvenv venv
venv/bin/pip install -r requirements.txt 'mypy!=1.7.0' venv/bin/pip install -r requirements-dev.txt
.PHONY: clean .PHONY: clean
clean: clean:

6
requirements-dev.txt Normal file
View file

@ -0,0 +1,6 @@
# SPDX-FileCopyrightText: 2023 Jeff Epler
#
# SPDX-License-Identifier: MIT
-r requirements.txt
mypy