mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-23 07:39:39 +07:00
+ add requirePythonSdk() verification for the Sdk extension functions, these methods are not designed to be called for non-python sdks and now will throw IllegalArgumentException. also corrects dependency tree: + move PythonSdkUtil to the python.sdk module, remove dependency on psi.impl + create PySkeletonUtil for skeleton utils and leave it in the psi.impl [python] (IJPL-205889) (BAZEL-2462) don't call getOrCreateAdditionalData for non-python sdks + add requirePythonSdk() verification for the Sdk extension functions, these methods are not designed to be called for non-python sdks and now will throw IllegalArgumentException also corrects dependency tree: + move PythonSdkUtil to the python.sdk module, remove dependency on psi.impl + create PySkeletonUtil for skeleton utils and leave it in the psi.impl GitOrigin-RevId: 20d958c5e15cc4e05545b2e61b126b5e015696ed
22 lines
1.2 KiB
XML
22 lines
1.2 KiB
XML
<idea-plugin visibility="public">
|
|
<dependencies>
|
|
<module name="intellij.python.community"/>
|
|
<module name="intellij.python.community.helpersLocator"/>
|
|
</dependencies>
|
|
<extensionPoints>
|
|
<extensionPoint qualifiedName="Pythonid.pythonSdkFlavor" interface="com.jetbrains.python.sdk.flavors.PythonSdkFlavor" dynamic="true"/>
|
|
<extensionPoint qualifiedName="Pythonid.pythonFlavorProvider"
|
|
interface="com.jetbrains.python.sdk.flavors.PythonFlavorProvider"
|
|
dynamic="true"/>
|
|
<extensionPoint qualifiedName="Pythonid.projectSdkConfigurationExtension"
|
|
interface="com.jetbrains.python.sdk.configuration.PyProjectSdkConfigurationExtension"
|
|
dynamic="true"/>
|
|
</extensionPoints>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceImplementation="com.jetbrains.python.packaging.PyCondaPackageService"/>
|
|
<applicationService serviceInterface="com.jetbrains.python.sdk.WinRegistryService"
|
|
serviceImplementation="com.jetbrains.python.sdk.WinRegistryServiceImpl"/>
|
|
<applicationService serviceImplementation="com.jetbrains.python.sdk.PySdkSettings"/>
|
|
</extensions>
|
|
</idea-plugin>
|