From 7121906e62de273ea7d6174c363098d42298685c Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Fri, 9 Aug 2019 20:49:11 -0700 Subject: [PATCH] Detect: Use easier Python version for requirements building --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 1178a7a..2f91782 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,15 @@ defalt: ffmpeg/detect.json -.tox/py38/bin/python: - tox -e py38 +.tox/py37/bin/python: + tox -e py37 touch "$(@)" -.tox/py38/lib/python3.8/site-packages/pandas: .tox/py38/bin/python - .tox/py38/bin/pip install requests lxml pandas +.tox/py37/lib/python3.7/site-packages/pandas: .tox/py37/bin/python + .tox/py37/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 >"$(@)" +ffmpeg/detect.json: .tox/py37/lib/python3.7/site-packages/pandas + .tox/py37/bin/python examples/get_detect_data.py >"$(@)"