https://github.com/bukosabino/ta
Raw File
Tip revision: ca3ad59d2c742f1be2c8db6d8ddcfcabf37e0f9e authored by dependabot[bot] on 23 August 2022, 16:01:00 UTC
Bump numpy from 1.21.5 to 1.22.0
Tip revision: ca3ad59
Makefile
init:
	pip install -r requirements.txt

isort:
	isort --check-only --recursive ta test

format: isort
	black --target-version py36 ta test

isort-fix:
	isort --recursive ta test

lint: isort
	prospector test/
	prospector ta/

test: lint
	coverage run -m unittest discover
	coverage report -m
back to top