Skip to content

Commit ffe85b0

Browse files
authored
Fix issue with AsyncPyDebugConsoleRunnerFactory extenstion declaration (#75)
1 parent a14f946 commit ffe85b0

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77

88
group = "com.uriyyo.evaluate_async_code"
9-
version = "1.25"
9+
version = "1.26"
1010

1111
repositories {
1212
mavenCentral()

gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2023.3.4
2-
ideaVersion=PC-2023.3.4
3-
pythonPlugin=PythonCore:233.14475.56
4-
downloadIdeaSources=true
1+
version=2024.2.0
2+
ideaVersion=PC-2024.2
3+
pythonPlugin=PythonCore:242.20224.347
4+
downloadIdeaSources=true

src/main/resources/META-INF/plugin.xml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.uriyyo.evaluate_async_code</id>
33
<name>Evaluate Async Code</name>
4-
<version>1.25</version>
4+
<version>1.26</version>
55
<vendor email="[email protected]">Yurii Karabas</vendor>
66

77
<description>
@@ -10,19 +10,15 @@
1010
</description>
1111

1212
<change-notes>
13-
Update async-eval version (fix pypy integration issue).
13+
Fix issue AsyncPyDebugConsoleRunnerFactory extension declaration.
1414
</change-notes>
1515

16-
<idea-version since-build="222"/>
16+
<idea-version since-build="242"/>
1717
<depends>com.intellij.modules.lang</depends>
1818
<depends>com.intellij.modules.python</depends>
1919

2020
<extensions defaultExtensionNs="com.intellij">
2121
<programRunner implementation="com.uriyyo.evaluate_async_code.AsyncPyDebugRunner" order="first"/>
22-
23-
<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
24-
serviceImplementation="com.uriyyo.evaluate_async_code.AsyncPyDebugConsoleRunnerFactory"
25-
overrides="true"/>
2622
</extensions>
2723

2824
<extensions defaultExtensionNs="Pythonid">
@@ -32,6 +28,11 @@
3228
order="first"/>
3329
</extensions>
3430

31+
<extensions defaultExtensionNs="com.jetbrains.python.console">
32+
<runnerFactory implementation="com.uriyyo.evaluate_async_code.AsyncPyDebugConsoleRunnerFactory"
33+
order="first"/>
34+
</extensions>
35+
3536
<actions>
3637
</actions>
3738

0 commit comments

Comments
 (0)