ffmpeg-python/Makefile
Ross Patterson dc243a6e9c Tests: Add recent Pythons for testing, remove Python 3.6
Python 3.6 was kinda skipped by many and isn't available in the Ubuntu
deadsnakes repository.
2019-08-09 19:08:57 -07:00

20 lines
415 B
Makefile

## Automate common development tasks
.PHONY: default
defalt: ffmpeg/detect.json
.tox/py38/bin/python:
tox -e py38
touch "$(@)"
.tox/py38/lib/python3.8/site-packages/pandas: .tox/py38/bin/python
.tox/py38/bin/pip install requests lxml pandas
touch "$(@)"
.PHONY: ffmpeg/detect.json
ffmpeg/detect.json: .tox/py38/lib/python3.8/site-packages/pandas
.tox/py38/bin/python examples/get_detect_data.py >"$(@)"