Skip to content

Commit

Permalink
Fix issue with AsyncPyDebugConsoleRunnerFactory extenstion declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
uriyyo committed Aug 22, 2024
1 parent a14f946 commit a5d3db0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {


group = "com.uriyyo.evaluate_async_code"
version = "1.25"
version = "1.26"

repositories {
mavenCentral()
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2023.3.4
ideaVersion=PC-2023.3.4
pythonPlugin=PythonCore:233.14475.56
downloadIdeaSources=true
version=2024.2.0
ideaVersion=PC-2024.2
pythonPlugin=PythonCore:242.20224.347
downloadIdeaSources=true
15 changes: 8 additions & 7 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>com.uriyyo.evaluate_async_code</id>
<name>Evaluate Async Code</name>
<version>1.25</version>
<version>1.26</version>
<vendor email="[email protected]">Yurii Karabas</vendor>

<description>
Expand All @@ -10,19 +10,15 @@
</description>

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

<idea-version since-build="222"/>
<idea-version since-build="242"/>
<depends>com.intellij.modules.lang</depends>
<depends>com.intellij.modules.python</depends>

<extensions defaultExtensionNs="com.intellij">
<programRunner implementation="com.uriyyo.evaluate_async_code.AsyncPyDebugRunner" order="first"/>

<applicationService serviceInterface="com.jetbrains.python.console.PythonConsoleRunnerFactory"
serviceImplementation="com.uriyyo.evaluate_async_code.AsyncPyDebugConsoleRunnerFactory"
overrides="true"/>
</extensions>

<extensions defaultExtensionNs="Pythonid">
Expand All @@ -32,6 +28,11 @@
order="first"/>
</extensions>

<extensions defaultExtensionNs="com.jetbrains.python.console">
<runnerFactory implementation="com.uriyyo.evaluate_async_code.AsyncPyDebugConsoleRunnerFactory"
order="first"/>
</extensions>

<actions>
</actions>

Expand Down

0 comments on commit a5d3db0

Please sign in to comment.