Diff jsonschema-spec-0.1.6 with a jsonschema-spec-0.2.4

/usr/portage/dev-python/jsonschema-spec/jsonschema-spec-0.2.4.ebuild 2023-10-09 14:52:30.296368370 +0300
23 23
KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
24 24

  
25 25
RDEPEND="
26
	<dev-python/jsonschema-4.18[${PYTHON_USEDEP}]
27
	>=dev-python/jsonschema-4.0.0[${PYTHON_USEDEP}]
28
	dev-python/pathable[${PYTHON_USEDEP}]
26
	>=dev-python/pathable-0.4.1[${PYTHON_USEDEP}]
29 27
	>=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
30
	dev-python/pathable[${PYTHON_USEDEP}]
28
	>=dev-python/referencing-0.28.1[${PYTHON_USEDEP}]
29
"
30

  
31
BDEPEND="
32
	test? (
33
		dev-python/responses[${PYTHON_USEDEP}]
34
	)
31 35
"
32 36

  
33 37
distutils_enable_tests pytest
34 38

  
35 39
src_prepare() {
36
	sed -e '/--cov/d' -i pyproject.toml || die
40
	sed -i -e '/--cov/d' pyproject.toml || die
41
	# remove random pins due to caret operator
42
	sed -i -e 's:\^:>=:' -e 's:,<[0-9.]*::' pyproject.toml || die
37 43
	distutils-r1_src_prepare
38 44
}
Thank you!