[PyCharm] Jupyter (fix): intellij.jupyter.core module is now pure v2 module, and propely included to everywhere. #PY-73770 Fixed

GitOrigin-RevId: f990cb2ff9e32a38565d4d25975a7c9929880dfa
This commit is contained in:
Nikita Pavlenko
2024-07-09 18:25:19 +02:00
committed by intellij-monorepo-bot
parent 0edfd7b59b
commit f87a1466b3
4 changed files with 9 additions and 14 deletions

View File

@@ -1,10 +0,0 @@
<!-- Jupyter language -->
<idea-plugin>
<extensions defaultExtensionNs="com.intellij">
<fileType name="Jupyter"
language="Jupyter"
extensions="ipynb"
implementationClass="com.intellij.jupyter.core.jupyter.JupyterFileType"
fieldName="INSTANCE"/>
</extensions>
</idea-plugin>

View File

@@ -1,3 +1,10 @@
<idea-plugin package="com.intellij.jupyter.core" xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="/META-INF/jupyter-core.xml"/>
<idea-plugin package="com.intellij.jupyter.core">
<!-- Jupyter language -->
<extensions defaultExtensionNs="com.intellij">
<fileType name="Jupyter"
language="Jupyter"
extensions="ipynb"
implementationClass="com.intellij.jupyter.core.jupyter.JupyterFileType"
fieldName="INSTANCE"/>
</extensions>
</idea-plugin>

View File

@@ -11,7 +11,6 @@ object PythonCommunityPluginModules {
@JvmField
val COMMUNITY_MODULES: PersistentList<String> = persistentListOf(
"intellij.commandInterface",
"intellij.jupyter.core",
"intellij.python.community",
"intellij.python.community.communityOnly",
"intellij.python.community.core.impl",

View File

@@ -14,7 +14,6 @@
<content>
<module name="intellij.pycharm.community.ide.impl"/>
<module name="intellij.pycharm.community.ide.implTraining"/>
<module name="intellij.jupyter.core"/> <!-- Lang for notebooks preview -->
<module name="intellij.jupyter.viewOnly"/> <!-- notebooks preview itself-->
<module name="intellij.platform.whatsNew"/>