Files
openide/python/interpreters/resources/intellij.python.community.interpreters.xml
Ilya.Kazakevichandintellij-monorepo-bot a0231c334a PY-77226: Introduce InterpreterService.
This service is aimed to substitute various SDK-management tools in PyCharm.

Begin with `InterpreterService()` function.

GitOrigin-RevId: 368d56c4a78812fe81de941e5e5ce61a56d385e6
2025-06-26 23:26:54 +00:00

21 lines
853 B
XML

<idea-plugin>
<dependencies>
<module name="intellij.python.community.services.shared"/>
<module name="intellij.python.sdk"/>
<module name="intellij.python.psi.impl"/>
<module name="intellij.python.community.execService.python"/>
<module name="intellij.python.community.execService"/>
<module name="intellij.python.parser"/>
<module name="intellij.python.community"/>
</dependencies>
<extensionPoints>
<extensionPoint qualifiedName="Pythonid.interpreterProvider"
dynamic="true"
interface="com.intellij.python.community.interpreters.spi.InterpreterProvider"/>
</extensionPoints>
<extensions defaultExtensionNs="Pythonid">
<interpreterProvider implementation="com.intellij.python.community.interpreters.impl.VanillaInterpreterProvider"/>
</extensions>
</idea-plugin>