diff options
Diffstat (limited to 'dev-python/cloudpickle')
-rw-r--r-- | dev-python/cloudpickle/cloudpickle-1.6.0.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-python/cloudpickle/cloudpickle-1.6.0.ebuild b/dev-python/cloudpickle/cloudpickle-1.6.0.ebuild index 9b8ea4979f1c..bb761a3aea74 100644 --- a/dev-python/cloudpickle/cloudpickle-1.6.0.ebuild +++ b/dev-python/cloudpickle/cloudpickle-1.6.0.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) + +PYTHON_COMPAT=( python3_{7..10} ) inherit distutils-r1 DESCRIPTION="Extended pickling support for Python objects" @@ -27,5 +28,5 @@ python_test() { local -x PYTHONPATH=${PYTHONPATH}:tests/cloudpickle_testpkg # -s unbreaks some tests # https://github.com/cloudpipe/cloudpickle/issues/252 - pytest -svv || die "Tests fail with ${EPYTHON}" + epytest -s } |