Diff nbconvert-7.8.0 with a nbconvert-7.9.1

/usr/portage/dev-python/nbconvert/nbconvert-7.9.1.ebuild 2023-10-09 14:52:30.312368371 +0300
17 17

  
18 18
LICENSE="BSD"
19 19
SLOT="0"
20
KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
20
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
21 21

  
22 22
RDEPEND="
23 23
	dev-python/beautifulsoup4[${PYTHON_USEDEP}]
......
61 61

  
62 62
python_test() {
63 63
	local EPYTEST_DESELECT=(
64
		# Missing pyppeteer for now
65
		# TODO: Doesn't skip?
66
		nbconvert/exporters/tests/test_webpdf.py
67
		# Needs pyppeteer too
68
		'nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_webpdf_with_chromium'
69 64
		# TODO
70
		nbconvert/exporters/tests/test_qtpng.py::TestQtPNGExporter::test_export
71
		nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
72
		nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_post_processor
73
		# latex failing, might be too new pandoc
74
		nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_filename_spaces
75
		nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_pdf
76
		# too new pandoc but we don't have old anymore
77
		nbconvert/utils/tests/test_pandoc.py::TestPandoc::test_minimal_version
78
		nbconvert/utils/tests/test_pandoc.py::TestPandoc::test_pandoc_available
65
		tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
66
		tests/test_nbconvertapp.py::TestNbConvertApp::test_post_processor
79 67
		# crazy qtweb* stuff, perhaps permissions
80
		nbconvert/exporters/tests/test_qtpdf.py::TestQtPDFExporter::test_export
68
		tests/exporters/test_qtpdf.py::TestQtPDFExporter::test_export
69
		tests/exporters/test_qtpng.py::TestQtPNGExporter::test_export
81 70
	)
82 71

  
83 72
	# virtx implies nonfatal, make it explicit to avoid confusion
84
	nonfatal epytest -n "$(makeopts_jobs)" --pyargs nbconvert || die
73
	nonfatal epytest -n "$(makeopts_jobs)" || die
85 74
}
86 75

  
87 76
pkg_postinst() {
Thank you!