From 47d131f6372773e67afc4ef579a419b6ee4378af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Tue, 28 Jan 2020 10:22:14 +0700 Subject: [PATCH] tox: drop python3.8 backported deps importlib_metadata is backport of Python 3.8's standard library for older Python. We've upgraded to Python 3.8, drop it. See: https://importlib-metadata.readthedocs.io/en/latest/ --- srcpkgs/tox/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template index d372885e460..2f413712328 100644 --- a/srcpkgs/tox/template +++ b/srcpkgs/tox/template @@ -1,10 +1,10 @@ # Template file for 'tox' pkgname=tox version=3.14.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3-filelock python3-importlib_metadata python3-packaging +depends="python3-filelock python3-packaging python3-pluggy python3-pytest python3-toml python3-virtualenv" checkdepends="${depends} python3-flaky python3-pathlib2" short_desc="Generic virtualenv management and test command line tool"