diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-02-14 21:39:32 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-02-14 22:05:04 +0100 |
commit | 4d768ad350b2cd830a319856fe28700aa1001677 (patch) | |
tree | f425e55f030ed54989473fea632a9c2ca5eb5228 /dev-python/importlib_resources | |
parent | dev-python/alembic: Remove stale dep on importlib_resources (diff) | |
download | gentoo-4d768ad350b2cd830a319856fe28700aa1001677.tar.gz gentoo-4d768ad350b2cd830a319856fe28700aa1001677.tar.bz2 gentoo-4d768ad350b2cd830a319856fe28700aa1001677.zip |
dev-python/importlib_resources: Enable py3.9 (for matplotlib)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/importlib_resources')
-rw-r--r-- | dev-python/importlib_resources/importlib_resources-5.10.2.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild b/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild index ddcd02a543b7..c940531e0171 100644 --- a/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild +++ b/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep EAPI=7 DISTUTILS_USE_PEP517=flit -# This is a backport of Python 3.9's importlib.resources -PYTHON_COMPAT=( pypy3 ) +# This is a backport of importlib.resources that's present since py3.9. +# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9 +# as well. +PYTHON_COMPAT=( pypy3 python3_9 ) inherit distutils-r1 |