code_samples/pycharm: upgrade to 2021.2

This commit is contained in:
Yann Cébron 2021-07-29 10:14:20 +02:00
parent 1509ba9966
commit be72b85b1a
2 changed files with 9 additions and 9 deletions

View File

@ -1,14 +1,14 @@
// Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2021 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.1.2'
id 'org.jetbrains.intellij' version '1.1.4'
}
group 'com.intellij.sdk'
version '0.1.0'
sourceCompatibility = 1.8
sourceCompatibility = 11
repositories {
mavenCentral()
@ -16,7 +16,7 @@ repositories {
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = '2020.2.5'
version = '2021.2'
type = 'PY'
downloadSources = false
}
@ -27,6 +27,6 @@ buildSearchableOptions {
patchPluginXml {
version = project.version
sinceBuild = '202'
untilBuild = '203.*'
sinceBuild = '203'
untilBuild = '212.*'
}

View File

@ -1,4 +1,4 @@
// Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2021 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package icons;
@ -8,6 +8,6 @@ import javax.swing.*;
public class SdkIcons {
public static final Icon Sdk_default_icon = IconLoader.getIcon("/icons/sdk_16.svg");
public static final Icon Sdk_default_icon = IconLoader.getIcon("/icons/sdk_16.svg", SdkIcons.class);
}