From 4c38618ebe3bd7114e36d73edab939b0adbbe6c3 Mon Sep 17 00:00:00 2001 From: Valerio Angelini <862998+AmailP@users.noreply.github.com> Date: Fri, 14 Aug 2020 10:16:35 +0200 Subject: [PATCH] Add support for Idea 2020.2 --- .travis.yml | 2 +- build.gradle | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 104f084..915e9a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ jdk: env: - IDEA_VERSION=IC-192.5728.98 - - IDEA_VERSION=IC-2020.1 + - IDEA_VERSION=IC-2020.2 script: - ./gradlew --console=plain check verifyPlugin diff --git a/build.gradle b/build.gradle index 33b7d6f..0ee54f2 100644 --- a/build.gradle +++ b/build.gradle @@ -18,12 +18,13 @@ repositories { version = gitVersion() -def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2020.1") +def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2020.2") def pythonPluginForVersion = [ "IC-192.5728.98": "PythonCore:2019.2.192.5728.98", "IC-2020.1": "PythonCore:201.6668.9", - "IC-193.4778.7-EAP-SNAPSHOT": "PythonCore:193.4778.7", + "IC-2020.2": "PythonCore:202.6397.124", +// "IC-193.4778.7-EAP-SNAPSHOT": "PythonCore:193.4778.7", ] intellij { @@ -43,7 +44,7 @@ publishPlugin { patchPluginXml { sinceBuild "192" - untilBuild "201.*" + untilBuild "202.*" } apply plugin: 'scala'