diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-12 20:10:25 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2021-09-12 20:10:25 +0300 |
commit | b99e27206a3db1bb153c00e4bb45ca8101b7a109 (patch) | |
tree | 187627b724b972b612720e2f73d574ce225aebb8 /dev-python/python-jwt | |
parent | dev-python/rjsmin: enable py3.10, EAPI=8, enable tests (diff) | |
download | gentoo-b99e27206a3db1bb153c00e4bb45ca8101b7a109.tar.gz gentoo-b99e27206a3db1bb153c00e4bb45ca8101b7a109.tar.bz2 gentoo-b99e27206a3db1bb153c00e4bb45ca8101b7a109.zip |
dev-python/python-jwt: enable py3.10, EAPI=8, block dev-python/pyjwt
Closes: https://bugs.gentoo.org/772011
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/python-jwt')
-rw-r--r-- | dev-python/python-jwt/python-jwt-1.2.0.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dev-python/python-jwt/python-jwt-1.2.0.ebuild b/dev-python/python-jwt/python-jwt-1.2.0.ebuild index e10f83af9f6e..1db1e4d42d1f 100644 --- a/dev-python/python-jwt/python-jwt-1.2.0.ebuild +++ b/dev-python/python-jwt/python-jwt-1.2.0.ebuild @@ -1,8 +1,9 @@ # Copyright 2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 -PYTHON_COMPAT=( python3_8 python3_9 ) +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="JSON Web Token library for python 3" @@ -20,7 +21,10 @@ LICENSE="Apache-2.0" SLOT="0" BDEPEND="test? ( dev-python/freezegun[${PYTHON_USEDEP}] )" -RDEPEND="dev-python/cryptography[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/cryptography[${PYTHON_USEDEP}] + !dev-python/pyjwt +" distutils_enable_tests pytest |