aiodns: drop support for Python 3.7, add it for 3.10. (#8077)

This commit is contained in:
OscarL
2023-03-23 10:39:06 -03:00
committed by GitHub
parent 25701fc563
commit 13fd674e5d

View File

@@ -4,7 +4,7 @@ resolutions with a synchronous looking interface by using pycares"
HOMEPAGE="https://pypi.python.org/pypi/aiodns"
COPYRIGHT="2016 Saúl Ibarra Corretgé"
LICENSE="MIT"
REVISION="2"
REVISION="3"
SOURCE_URI="https://pypi.org/packages/source/a/aiodns/aiodns-$portVersion.tar.gz"
CHECKSUM_SHA256="815fdef4607474295d68da46978a54481dd1e7be153c7d60f9e72773cd38d77d"
@@ -21,8 +21,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]}
@@ -57,4 +57,3 @@ INSTALL()
$prefix/lib/python*
done
}