Diff sqlalchemy-2.0.20 with a sqlalchemy-2.0.21

/usr/portage/dev-python/sqlalchemy/sqlalchemy-2.0.21.ebuild 2023-10-09 14:52:30.384368373 +0300
8 8
PYTHON_COMPAT=( pypy3 python3_{10..12} )
9 9
PYTHON_REQ_USE="sqlite?"
10 10

  
11
inherit distutils-r1 optfeature pypi
11
inherit distutils-r1 multiprocessing optfeature pypi
12 12

  
13 13
MY_PN="SQLAlchemy"
14 14
DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
......
22 22

  
23 23
LICENSE="MIT"
24 24
SLOT="0"
25
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
25
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
26 26
IUSE="examples +sqlite test"
27 27

  
28 28
RDEPEND="
......
32 32
	dev-python/cython[${PYTHON_USEDEP}]
33 33
	test? (
34 34
		$(python_gen_impl_dep sqlite)
35
		dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
36
		dev-python/pytest-xdist[${PYTHON_USEDEP}]
35 37
	)
36 38
"
37 39

  
......
87 89
	# means that any DeprecationWarnings from third-party plugins cause
88 90
	# everything to explode
89 91
	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
90
	local -x PYTEST_PLUGINS=
91
	# upstream automagically depends on xdist when it is importable
92
	# note that we can't use xdist because it causes nodes to randomly
93
	# crash on init
94
	if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then
95
		PYTEST_PLUGINS+=xdist.plugin
96
	fi
97
	epytest
92
	epytest -p rerunfailures --reruns=10 --reruns-delay=2 \
93
		-p xdist -n "$(makeopts_jobs)" --dist=worksteal
98 94
}
99 95

  
100 96
python_install_all() {
Thank you!