summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-06-20 09:17:05 +0200
committerMichał Górny <mgorny@gentoo.org>2021-06-23 23:44:10 +0200
commit22a9a4d043c650c1599c3cd28281c6a0d4ccfa05 (patch)
tree1f77cdfeaf82d9f78ba8683a71582d3010506a9d
parentpython-utils-r1.eclass: Fix python_fix_shebang for py3.10+ (diff)
downloadgentoo-22a9a4d043c650c1599c3cd28281c6a0d4ccfa05.tar.gz
gentoo-22a9a4d043c650c1599c3cd28281c6a0d4ccfa05.tar.bz2
gentoo-22a9a4d043c650c1599c3cd28281c6a0d4ccfa05.zip
python-utils-r1.eclass: Enable EAPI 8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--eclass/python-utils-r1.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 2a34614bc7fc..9c8b683a337f 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -7,7 +7,7 @@
# @AUTHOR:
# Author: Michał Górny <mgorny@gentoo.org>
# Based on work of: Krzysztof Pawlik <nelchael@gentoo.org>
-# @SUPPORTED_EAPIS: 6 7
+# @SUPPORTED_EAPIS: 6 7 8
# @BLURB: Utility functions for packages with Python parts.
# @DESCRIPTION:
# A utility eclass providing functions to query Python implementations,
@@ -24,7 +24,7 @@
# See bug #704286, bug #781878
case "${EAPI:-0}" in
[0-5]) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;;
- [6-7]) ;;
+ [6-8]) ;;
*) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" ;;
esac