Skip to content

Commit

Permalink
Remove upper version on PyCharm compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Dec 3, 2022
1 parent 9c4df63 commit c02c7a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/PySrc/space_tracer/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Don't put any code in here, because it must be safe to execute in setup.py. """

__title__ = 'space_tracer' # => name in setup.py
__version__ = '4.9.0'
__version__ = '4.9.1'
__author__ = "Don Kirkby"
__author_email__ = "[email protected]"
__description__ = "Trade time for space when debugging your code."
Expand Down
3 changes: 2 additions & 1 deletion pycharm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "io.github.donkirkby"
version = "4.9.0"
version = "4.9.1"

repositories {
mavenCentral()
Expand Down Expand Up @@ -44,6 +44,7 @@ tasks {

patchPluginXml {
sinceBuild.set("193")
untilBuild.set("")
}

signPlugin {
Expand Down
1 change: 1 addition & 0 deletions pycharm/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<change-notes><![CDATA[
Now compatible with Python 3.11 and Matplotlib 3.5.2.
Fix IntelliJ version limits.
]]>
</change-notes>

Expand Down

0 comments on commit c02c7a5

Please sign in to comment.