asynctest: drop support for Python 3.7, add it for 3.10. (#8054)

Also, switch arch to "any".
This commit is contained in:
OscarL
2023-03-22 10:53:44 -03:00
committed by GitHub
parent 0afd973822
commit 781aabc2f8

View File

@@ -7,11 +7,11 @@ Windows proactor."
HOMEPAGE="https://pypi.org/project/asynctest/"
COPYRIGHT="2015-2019 Martin Richard"
LICENSE="Apache v2"
REVISION="1"
REVISION="2"
SOURCE_URI="https://files.pythonhosted.org/packages/0c/0f/6056f4435923d2f8c89ac9ef2d18506a569348d8f9cc827b0dd7a4c8acc4/asynctest-$portVersion.tar.gz"
CHECKSUM_SHA256="c27862842d15d83e6a34eb0b2866c323880eb3a75e4485b079ea11748fd77fac"
ARCHITECTURES="all"
ARCHITECTURES="any"
PROVIDES="
$portName = $portVersion
@@ -24,8 +24,8 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3 python38 python39)
PYTHON_VERSIONS=(3.7 3.8 3.9)
PYTHON_PACKAGES=(python38 python39 python310)
PYTHON_VERSIONS=(3.8 3.9 3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}
@@ -60,4 +60,3 @@ INSTALL()
$prefix/lib/python*
done
}