From 5dc469fff93cc4645b79454ec47ca4caf92dc850 Mon Sep 17 00:00:00 2001 From: Jerome Duval Date: Tue, 26 Jan 2021 21:28:16 +0100 Subject: [PATCH] idna: enable 3.8, 3.9, remove 3.6 --- dev-python/idna/idna-2.8.recipe | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-python/idna/idna-2.8.recipe b/dev-python/idna/idna-2.8.recipe index 03855cc5e..5a482f296 100644 --- a/dev-python/idna/idna-2.8.recipe +++ b/dev-python/idna/idna-2.8.recipe @@ -4,7 +4,7 @@ DESCRIPTION="Support for the Internationalised Domain Names in Applications \ HOMEPAGE="https://pypi.python.org/pypi/idna" COPYRIGHT="2013-2019 Kim Davie" LICENSE="BSD (3-clause)" -REVISION="1" +REVISION="2" SOURCE_URI="https://pypi.io/packages/source/i/idna/idna-$portVersion.tar.gz" CHECKSUM_SHA256="c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407" @@ -21,16 +21,18 @@ BUILD_REQUIRES=" haiku_devel setuptools_python setuptools_python3 - setuptools_python36 + setuptools_python38 + setuptools_python39 " BUILD_PREREQUIRES=" cmd:python cmd:python3 - cmd:python3.6 + cmd:python3.8 + cmd:python3.9 " -PYTHON_PACKAGES=(python python36 python3) -PYTHON_VERSIONS=(2.7 3.6 3.7) +PYTHON_PACKAGES=(python python3 python38 python39) +PYTHON_VERSIONS=(2.7 3.7 3.8 3.9) for i in "${!PYTHON_PACKAGES[@]}"; do pythonPackage=${PYTHON_PACKAGES[i]} pythonVersion=${PYTHON_VERSIONS[$i]}