Fix Python 3.12 compatibility (#6965)

.joinpath with an empty argument no longer works as before thanks to this change in CPython: cea910ebf1 (diff-2e741d925220d74a9cc04cda1314d3649d9d189c0efc7db18e5387a51225b61c)

This change mimics the old internal behavior by using _paths attribute directly.
This commit is contained in:
Lumír 'Frenzy' Balhar 2023-08-04 09:18:21 +02:00 committed by GitHub
parent 6148708496
commit 0188ad8fd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ def make_notebook_app( # noqa PLR0913
)
# Copy the schema files.
test_data = str(files("jupyterlab_server.test_data").joinpath(""))
test_data = str(files("jupyterlab_server.test_data")._paths[0]) # type: ignore
src = pathlib.PurePath(test_data, "schemas", "@jupyterlab")
dst = pathlib.PurePath(str(schemas_dir), "@jupyterlab")
if os.path.exists(dst):