Diff indexed-gzip-1.7.1 with a indexed-gzip-1.8.3

/usr/portage/dev-python/indexed-gzip/indexed-gzip-1.8.3.ebuild 2023-10-09 14:52:30.292368370 +0300
5 5

  
6 6
DISTUTILS_EXT=1
7 7
DISTUTILS_USE_PEP517=setuptools
8
PYTHON_COMPAT=( python3_{9..11} )
8
PYTHON_COMPAT=( python3_{10..11} )
9 9

  
10
inherit distutils-r1 pypi
10
inherit distutils-r1 multiprocessing pypi
11 11

  
12 12
DESCRIPTION="Fast random access of gzip files in Python"
13 13
HOMEPAGE="
......
29 29
	dev-python/cython[${PYTHON_USEDEP}]
30 30
	test? (
31 31
		dev-python/numpy[${PYTHON_USEDEP}]
32
		dev-python/pytest-xdist[${PYTHON_USEDEP}]
32 33
	)
33 34
"
34 35

  
......
51 52

  
52 53
python_test() {
53 54
	cd "${BUILD_DIR}/install$(python_get_sitedir)/indexed_gzip/tests" || die
54
	epytest
55
	epytest -n "$(makeopts_jobs)" --dist=worksteal
55 56
}
Thank you!