From dc243a6e9cc06e73836f0039e582195c28ae40ad Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Fri, 9 Aug 2019 17:38:23 -0700 Subject: [PATCH] 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. --- Makefile | 12 ++++++------ tox.ini | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 49d55b5..1178a7a 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,15 @@ defalt: ffmpeg/detect.json -.tox/py35/bin/python: - tox -e py35 +.tox/py38/bin/python: + tox -e py38 touch "$(@)" -.tox/py35/lib/python3.5/site-packages/pandas: .tox/py35/bin/python - .tox/py35/bin/pip install requests lxml pandas +.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/py35/lib/python3.5/site-packages/pandas - .tox/py35/bin/python examples/get_detect_data.py >"$(@)" +ffmpeg/detect.json: .tox/py38/lib/python3.8/site-packages/pandas + .tox/py38/bin/python examples/get_detect_data.py >"$(@)" diff --git a/tox.ini b/tox.ini index 0825210..1f64f2d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py34, py35, py36, pypy +envlist = py27, py34, py35, py37, py38, pypy [testenv] usedevelop = true