Skip to content

Commit 5b42112

Browse files
committed
Switch PyCharm plugin dependency on Python module.
Bump version to 4.13.2.
1 parent cfce050 commit 5b42112

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

contributing-pycharm.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,15 @@ two types of IDEA release.
4747
[IDEA build number ranges]: https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
4848
[IDEA source code]: https://github.com/JetBrains/intellij-community
4949

50+
Writing an IDEA plugin is complicated, so start with the
51+
[JetBrains documentation]. When you run into trouble, try searching or posting
52+
on the [JetBrains Platform forum]. There are more useful links in the
53+
[Plugin template].
54+
55+
[JetBrains documentation]: https://plugins.jetbrains.com/docs/intellij/developing-plugins.html
56+
[JetBrains Platform forum]: https://platform.jetbrains.com/
57+
[Plugin template]: https://github.com/JetBrains/intellij-platform-plugin-template#useful-links
58+
5059
### Publish a new release for the PyCharm plugin
5160
1. Check that all the Python unit tests pass, by running tox.
5261
2. Update the version number in `about.py` and `pycharm/build.gradle.kts`, and

plugin/PySrc/space_tracer/about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Don't put any code in here, because it must be safe to execute in setup.py. """
44

55
__title__ = 'space_tracer' # => name in setup.py
6-
__version__ = '4.13.0'
6+
__version__ = '4.13.2'
77
__author__ = "Don Kirkby"
88
__author_email__ = "donkirkby@gmail.com"
99
__description__ = "Trade time for space when debugging your code."

pycharm/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
22

33
plugins {
44
id("java")
5-
id("org.jetbrains.intellij.platform") version "2.10.5"
5+
id("org.jetbrains.intellij.platform") version "2.11.0"
66
}
77

88
group = "io.github.donkirkby"
9-
version = "4.13.1"
9+
version = "4.13.2"
1010

1111
repositories {
1212
mavenCentral()
@@ -20,12 +20,12 @@ repositories {
2020
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html
2121
dependencies {
2222
intellijPlatform {
23-
intellijIdeaUltimate("2025.3")
23+
intellijIdeaUltimate("2025.3.2")
2424

2525
// "Pythonid" for ultimate, "PythonCore" for community. Find compatible
2626
// ultimate versions at https://plugins.jetbrains.com/plugin/631
2727
// community versions at https://plugins.jetbrains.com/plugin/7322
28-
plugin("PythonCore:253.28294.334")
28+
plugin("PythonCore:253.30387.90")
2929

3030
pluginVerifier()
3131
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
3030
on how to target different products -->
3131
<depends>com.intellij.modules.lang</depends>
32-
<depends>PythonCore</depends>
32+
<depends>com.intellij.modules.python</depends>
3333
<extensions defaultExtensionNs="com.intellij">
3434
<fileEditorProvider
3535
implementation="io.github.donkirkby.livepycharm.SplitFileEditorProvider"/>

0 commit comments

Comments
 (0)