diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-06-10 10:56:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-06-10 10:58:12 +0200 |
commit | 86b7235b159276c2b3a4fc276bc6b17f528a1af7 (patch) | |
tree | f907e16e4dfca6321bbb9d48c1ddde4388de3f81 /dev-python/scikit-build | |
parent | dev-python/distro: Port to py3.9 (diff) | |
download | gentoo-86b7235b159276c2b3a4fc276bc6b17f528a1af7.tar.gz gentoo-86b7235b159276c2b3a4fc276bc6b17f528a1af7.tar.bz2 gentoo-86b7235b159276c2b3a4fc276bc6b17f528a1af7.zip |
dev-python/scikit-build: Port to py3.9
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/scikit-build')
-rw-r--r-- | dev-python/scikit-build/scikit-build-0.11.1.ebuild | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/dev-python/scikit-build/scikit-build-0.11.1.ebuild b/dev-python/scikit-build/scikit-build-0.11.1.ebuild index 334675dcd530..9fced16258ce 100644 --- a/dev-python/scikit-build/scikit-build-0.11.1.ebuild +++ b/dev-python/scikit-build/scikit-build-0.11.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6..8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -15,25 +15,28 @@ SLOT="0" LICENSE="MIT" KEYWORDS="~amd64 ~x86" -RDEPEND="dev-python/distro[${PYTHON_USEDEP}] +RDEPEND=" + dev-python/distro[${PYTHON_USEDEP}] dev-python/packaging[${PYTHON_USEDEP}] dev-python/wheel[${PYTHON_USEDEP}]" -DEPEND="test? ( - dev-python/coverage[${PYTHON_USEDEP}] - dev-python/cython[${PYTHON_USEDEP}] - dev-python/flake8[${PYTHON_USEDEP}] - dev-python/path-py[${PYTHON_USEDEP}] - dev-python/pytest-mock[${PYTHON_USEDEP}] - dev-python/pytest-virtualenv[${PYTHON_USEDEP}] - dev-python/PyQt5[testlib,${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] - dev-python/virtualenv[${PYTHON_USEDEP}] )" +DEPEND=" + test? ( + dev-python/cython[${PYTHON_USEDEP}] + dev-python/path-py[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/pytest-virtualenv[${PYTHON_USEDEP}] + dev-python/PyQt5[testlib,${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + )" PATCHES=( "${FILESDIR}/${PN}-0.10.0-docs.patch" ) -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinx-issues +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme \ + dev-python/sphinx-issues distutils_enable_tests pytest python_prepare_all() { |