[python]: rename module to move it out of community.impl since this name is already used and might lead to clash.

`intellij.python.community.impl.community_only` -> `intellij.python.community.communityOnly`

GitOrigin-RevId: 070222708f66ba5f58b9716040186ec11d984e5d
This commit is contained in:
Ilya.Kazakevich
2024-03-06 19:36:03 +01:00
committed by intellij-monorepo-bot
parent d406ad5f3d
commit 37c7118b1a
7 changed files with 7 additions and 7 deletions

2
.idea/modules.xml generated
View File

@@ -1126,9 +1126,9 @@
<module fileurl="file://$PROJECT_DIR$/python/python-ast/intellij.python.ast.iml" filepath="$PROJECT_DIR$/python/python-ast/intellij.python.ast.iml" />
<module fileurl="file://$PROJECT_DIR$/python/python-common-tests/intellij.python.commonTests.iml" filepath="$PROJECT_DIR$/python/python-common-tests/intellij.python.commonTests.iml" />
<module fileurl="file://$PROJECT_DIR$/python/openapi/intellij.python.community.iml" filepath="$PROJECT_DIR$/python/openapi/intellij.python.community.iml" />
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.communityOnly/intellij.python.community.communityOnly.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.communityOnly/intellij.python.community.communityOnly.iml" />
<module fileurl="file://$PROJECT_DIR$/python/python-core-impl/intellij.python.community.core.impl.iml" filepath="$PROJECT_DIR$/python/python-core-impl/intellij.python.community.core.impl.iml" />
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.impl.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.impl.iml" />
<module fileurl="file://$PROJECT_DIR$/python/intellij.python.community.impl.community_only/intellij.python.community.impl.community_only.iml" filepath="$PROJECT_DIR$/python/intellij.python.community.impl.community_only/intellij.python.community.impl.community_only.iml" />
<module fileurl="file://$PROJECT_DIR$/python/huggingFace/intellij.python.community.impl.huggingFace.iml" filepath="$PROJECT_DIR$/python/huggingFace/intellij.python.community.impl.huggingFace.iml" />
<module fileurl="file://$PROJECT_DIR$/python/poetry/intellij.python.community.impl.poetry.iml" filepath="$PROJECT_DIR$/python/poetry/intellij.python.community.impl.poetry.iml" />
<module fileurl="file://$PROJECT_DIR$/python/pluginCore/intellij.python.community.plugin.iml" filepath="$PROJECT_DIR$/python/pluginCore/intellij.python.community.plugin.iml" />

View File

@@ -22,7 +22,7 @@ object PythonCommunityPluginModules {
"intellij.python.community.impl",
"intellij.python.community.impl.poetry",
"intellij.python.community.impl.huggingFace",
"intellij.python.community.impl.community_only",
"intellij.python.community.communityOnly",
"intellij.python.langInjection",
"intellij.python.copyright",
"intellij.python.terminal",

View File

@@ -1,5 +1,5 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.python.community.impl.community_only
package com.intellij.python.community.communityOnly
import com.jetbrains.python.console.PydevConsoleRunnerFactory

View File

@@ -1,11 +1,11 @@
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<idea-plugin package="com.intellij.python.community.impl.community_only">
<idea-plugin package="com.intellij.python.community.communityOnly">
<!--Community only, never professional: both plugin and DS -->
<dependencies>
<module name="intellij.python.community.impl"/>
</dependencies>
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
serviceImplementation="com.intellij.python.community.impl.community_only.CommunityPydevConsoleRunnerFactory"/>
serviceImplementation="com.intellij.python.community.communityOnly.CommunityPydevConsoleRunnerFactory"/>
</extensions>
</idea-plugin>

View File

@@ -8,6 +8,6 @@
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="intellij.platform.lang" />
<orderEntry type="module" module-name="intellij.python.community.impl.community_only" scope="RUNTIME" />
<orderEntry type="module" module-name="intellij.python.community.communityOnly" scope="RUNTIME" />
</component>
</module>

View File

@@ -31,7 +31,7 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
<!--Mini-IDes support community python only-->
<module name="intellij.python.community.plugin.minor"/> <!-- Python for Mini-IDEs-->
<module name="intellij.python.community.plugin.minor.rider"/> <!-- Python special support for Rider -->
<module name="intellij.python.community.impl.community_only"/> <!-- Community-specific code-->
<module name="intellij.python.community.communityOnly"/> <!-- Community-specific code-->
</content>
</idea-plugin>