pip, use python310 instead of python3.10 (#6781)

bash doesn't allow dot in variable names
This commit is contained in:
Schrijvers Luc
2022-03-28 13:13:32 +02:00
committed by GitHub
parent 77a815569e
commit e5d771d947

View File

@@ -3,7 +3,7 @@ DESCRIPTION="Install Python packages, replacement for easy_install"
HOMEPAGE="https://pypi.python.org/pypi/pip"
COPYRIGHT="2006-2019 Python Packaging Authority"
LICENSE="Python"
REVISION="3"
REVISION="4"
SOURCE_URI="https://pypi.io/packages/source/p/pip/pip-$portVersion.tar.gz"
CHECKSUM_SHA256="21207d76c1031e517668898a6b46a9fb1501c7a4710ef5dfd6a40ad9e6757ea7"
@@ -20,7 +20,7 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python python3 python38 python39 python3.10)
PYTHON_PACKAGES=(python python3 python38 python39 python310)
PYTHON_VERSIONS=(2.7 3.7 3.8 3.9 3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}