PyCharm with Anaconda plugin: skip some build steps

GitOrigin-RevId: 8b4d255c4e306b6db56817bef9a12cfb18a0c179
This commit is contained in:
Aleksey Rostovskiy
2019-11-21 08:06:06 +00:00
committed by intellij-monorepo-bot
parent 1e0d24726b
commit 3e933075dc
@@ -79,7 +79,16 @@ class PyCharmCommunityProperties extends PyCharmPropertiesBase {
@Override
LinuxDistributionCustomizer createLinuxCustomizer(String projectHome) {
return new PyCharmCommunityLinuxDistributionCustomizer(projectHome)
return new PyCharmCommunityLinuxDistributionCustomizer(projectHome) {
@Override
String getSnapName() { return "pycharm-community" }
@Override
String getSnapDescription() {
return "Python IDE for professional developers. Save time while PyCharm takes care of the routine. " + \
"Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features."
}
}
}
@Override
@@ -112,10 +121,6 @@ class PyCharmCommunityLinuxDistributionCustomizer extends LinuxDistributionCusto
PyCharmCommunityLinuxDistributionCustomizer(projectHome) {
iconPngPath = "$projectHome/python/resources/PyCharmCore128.png"
iconPngPathForEAP = "$projectHome/python/resources/PyCharmCore128_EAP.png"
snapName = "pycharm-community"
snapDescription =
"Python IDE for professional developers. Save time while PyCharm takes care of the routine. "
"Focus on bigger things and embrace the keyboard-centric approach to get the most of PyCharm’s many productivity features."
}
@Override