From 1fcceb6c77d37f0cd9dc0a81f8414919a1bb284d 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:23:41 +0700 Subject: [PATCH] pytest3: 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/python3-pytest/template | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template index 5c6ebe9897..71ccb76537 100644 --- a/srcpkgs/python3-pytest/template +++ b/srcpkgs/python3-pytest/template @@ -1,14 +1,13 @@ # Template file for 'python3-pytest' pkgname=python3-pytest version=5.3.2 -revision=2 +revision=3 archs=noarch wrksrc="${pkgname/python3-//}-${version}" build_style=python3-module -pycompile_module="_pytest pytest.py" hostmakedepends="python3-setuptools" depends="python3-py python3-packaging python3-attrs python3-more-itertools - python3-atomicwrites python3-pluggy python3-importlib_metadata python3-wcwidth" + python3-atomicwrites python3-pluggy python3-wcwidth" checkdepends="$depends python3-argcomplete python3-hypothesis python3-mock python3-nose python3-requests python3-parsing tox" short_desc="Simple powerful testing with Python 3" @@ -29,7 +28,7 @@ post_patch() { } do_check() { - tox -e py36 + tox -e "py${py3_ver/./}" } post_install() {