PY-66252 Introduce a new registry key "disable.python.cache.update" to conditionally disable automatic updating of PyPI package cache and ranking on project startup.

Delete unnecessary checks of project-level python.

(cherry picked from commit 7b38138885ac7036895ff6c4dcb9f86358d1ecd5)

IJ-MR-148661

GitOrigin-RevId: 7bb045be17944f51224fd774b3db67f21a510a51
This commit is contained in:
Timur Malanin
2024-11-07 23:40:34 +00:00
committed by intellij-monorepo-bot
parent 9a50d834e7
commit 329fa5cf88
3 changed files with 12 additions and 25 deletions

View File

@@ -639,6 +639,11 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
defaultValue="[IN_EXPERIMENT*|ENABLED|DISABLED]"
description="Enable ML ranking in quick fix for missing imports"/>
<registryKey key="disable.python.cache.update"
defaultValue="false"
restartRequired="false"
description="Disables automatic updating of PyPI package cache and ranking on project startup."/>
<feedback.idleFeedbackSurvey implementation="com.jetbrains.python.statistics.feedback.PythonJobSurvey"/>
<statistics.counterUsagesCollector implementationClass="com.jetbrains.python.statistics.feedback.PythonJobStatisticsCollector"/>
<backgroundPostStartupActivity implementation="com.jetbrains.python.statistics.feedback.PythonFirstLaunchChecker"/>
@@ -1020,4 +1025,5 @@ The Python plug-in provides smart editing for Python scripts. The feature set of
<numericContainerPopupCustomizer implementation="com.jetbrains.python.debugger.pydev.tables.PyNumericContainerPopupCustomizerDefault"/>
<pyDebugAsyncioCustomizer implementation="com.jetbrains.python.debugger.PyDebugAsyncioCustomizerDefault"/>
</extensions>
</idea-plugin>