libstratis 2.4.2

Stratis daemon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: lint
lint:
	./check.py check.py
	./check.py create_release.py
	./check.py set_lower_bounds 
	./check.py _utils.py

.PHONY: fmt
fmt:
	isort --recursive .
	black .
	black set_lower_bounds

.PHONY: fmt-travis
fmt-travis:
	isort --recursive --diff --check-only .
	black . --check
	black set_lower_bounds --check