Skip to content

Commit 232aded

Browse files
committed
Support for Python 3.13
1 parent 17c72d4 commit 232aded

8 files changed

Lines changed: 13 additions & 23 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- 'st3-*'
7+
- 'st4-*'
78

89
jobs:
910

.prospector.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# EasyDiff
22

3+
# 2.1.0
4+
5+
- **NEW**: Changes to support Python 3.13 in ST 4201+.
6+
37
# 2.0.6
48

59
- **FIX**: Ensure `typing` dependency is included for Python 3.3.

dependencies.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"*": {
33
">=3124": [
4-
"mdpopups",
5-
"typing"
4+
"mdpopups"
65
]
76
}
87
}

messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"2.0.0": "messages/recent.md"
2+
"2.1.0": "messages/recent.md"
33
}

messages/recent.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# EasyDiff 2.0.0
1+
# EasyDiff
22

33
Changelog and support info command is now available in `Preferences->Package Settings->EasyDiff`.
44

5-
Some fixes were made as well, see changelog for more info.
5+
# 2.1.0
6+
7+
- **NEW**: Changes to support Python 3.13 in ST 4201+.

support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "2.0.5"
8+
__version__ = "2.1.0"
99
__pc_name__ = 'EasyDiff'
1010

1111
CSS = '''

0 commit comments

Comments
 (0)