I've been using this action to test lsp_utils dependency in:
https://github.com/sublimelsp/lsp_utils/blob/f2a43fa2db4aeddbcf8ea1ce79ce95f143ddc696/.github/workflows/on-pull-request.yml#L18-L38
With PC 4 now it's no longer enough to link dependency in Packages/*. Now it needs to be linked in ../Lib/python38/*. And not the root directory of the dependency itself has to be linked but rather the dependency_name/st3/dependency_name/ instead.
And the tests I guess still have to be copied/linked to Packages/* with according .python-version added.
I suppose it's a bit of a tricky case to handle now but this is the issue asking for adding support for that. :)
I've been using this action to test
lsp_utilsdependency in:https://github.com/sublimelsp/lsp_utils/blob/f2a43fa2db4aeddbcf8ea1ce79ce95f143ddc696/.github/workflows/on-pull-request.yml#L18-L38
With PC 4 now it's no longer enough to link dependency in
Packages/*. Now it needs to be linked in../Lib/python38/*. And not the root directory of the dependency itself has to be linked but rather thedependency_name/st3/dependency_name/instead.And the tests I guess still have to be copied/linked to
Packages/*with according.python-versionadded.I suppose it's a bit of a tricky case to handle now but this is the issue asking for adding support for that. :)