Skip to content

Commit

Permalink
Update to 2019.3.3
Browse files Browse the repository at this point in the history
This updates the version if IDEA that we're building against to 2019.3.3, and
includes some minor fixes needed to be used with this version.

Note that 2019.3.3 has a broken version of pydev/pydevd that prevents attaching
and debugging fusion scripts. It's possible to get it to work, but it's a bit
hacky. See #7 (comment)
for more info.
  • Loading branch information
JesusFreke committed Apr 12, 2020
1 parent 1767c86 commit e3290fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -6,11 +6,11 @@ plugins {
apply plugin: 'idea'

group 'org.jf'
version '0.5.7'
version '0.5.8'

sourceCompatibility = 1.8

def pythonCoreVersion = "2019.2.192.6817.14"
def pythonCoreVersion = "193.6494.42"

repositories {
mavenCentral()
Expand All @@ -21,8 +21,8 @@ dependencies {
}

intellij {
version '2019.2.3'
plugins 'PythonCore:2019.2.192.6817.14',
version '2019.3.3'
plugins 'PythonCore:193.6494.42',
'java'
updateSinceUntilBuild false
}
Expand Down
Expand Up @@ -32,6 +32,7 @@
import com.intellij.openapi.module.Module;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.projectRoots.Sdk;
import com.intellij.openapi.util.UserDataHolder;
import com.jetbrains.python.sdk.add.PyAddSdkProvider;
import com.jetbrains.python.sdk.add.PyAddSdkView;
import org.jetbrains.annotations.NotNull;
Expand All @@ -46,7 +47,8 @@ public PyAddSdkView createView(
@Nullable Project project,
@Nullable Module module,
@Nullable String newProjectPath,
@NotNull List<? extends Sdk> existingSdks) {
@NotNull List<? extends Sdk> existingSdks,
@NotNull UserDataHolder userDataHolder) {
return new AddFusionSdkView(existingSdks);
}
}

0 comments on commit e3290fa

Please sign in to comment.