pytest_relaxed: drop support for Python 3.7 and 3.8. (#8013)

This commit is contained in:
OscarL
2023-03-20 07:45:52 -03:00
committed by GitHub
parent 784d3ff49f
commit ef3df7a04e

View File

@@ -7,7 +7,7 @@ opt-in to various behaviors)."
HOMEPAGE="https://github.com/bitprophet/pytest-relaxed"
COPYRIGHT="2020 Jeff Forcier"
LICENSE="BSD (2-clause)"
REVISION="2"
REVISION="3"
SOURCE_URI="$HOMEPAGE/archive/refs/tags/$portVersion.tar.gz"
CHECKSUM_SHA256="80ec97a6e220237b0fdb11ad0101005740bfe9855f0bc3851ac1e6ba1d5f7d95"
SOURCE_DIR="pytest-relaxed-$portVersion"
@@ -25,8 +25,8 @@ BUILD_REQUIRES="
haiku_devel
"
PYTHON_PACKAGES=(python3 python38 python39 python310)
PYTHON_VERSIONS=(3.7 3.8 3.9 3.10)
PYTHON_PACKAGES=(python39 python310)
PYTHON_VERSIONS=(3.9 3.10)
for i in "${!PYTHON_PACKAGES[@]}"; do
pythonPackage=${PYTHON_PACKAGES[i]}
pythonVersion=${PYTHON_VERSIONS[$i]}