Skip to content

Commit 218ccea

Browse files
committed
update makefile to install requirements from pyproject.toml
1 parent f385bc5 commit 218ccea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ init:
44
python -m pip install -e .
55

66
lint:
7-
pip install -r requirements-lint.txt
7+
pip install causalpy[lint]
88
isort .
99
black .
1010

1111
check_lint:
12-
pip install -r requirements-lint.txt
12+
pip install causalpy[lint]
1313
flake8 .
1414
isort --check-only .
1515
black --diff --check --fast .
@@ -18,5 +18,5 @@ check_lint:
1818
interrogate .
1919

2020
test:
21-
pip install -r requirements-test.txt
21+
pip install causalpy[test]
2222
pytest

0 commit comments

Comments
 (0)