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/
This commit is contained in:
parent
47d131f637
commit
1fcceb6c77
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue