File tree Expand file tree Collapse file tree 6 files changed +21
-25
lines changed
documentation/reference/sigstickers Expand file tree Collapse file tree 6 files changed +21
-25
lines changed Original file line number Diff line number Diff line change 3
3
All major and minor version changes will be documented in this file. Details of
4
4
patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
5
5
6
+ ## 2024 - 2024/01/07
7
+
8
+ - update dependencies
9
+
6
10
## 2023 - 2023/08/31
7
11
8
12
- Update deps
Original file line number Diff line number Diff line change @@ -24,8 +24,7 @@ Write cache data to a file identified by packName
24
24
#### Signature
25
25
26
26
``` python
27
- def createConverted (packName : str , data : dict ):
28
- ...
27
+ def createConverted (packName : str , data : dict ): ...
29
28
```
30
29
31
30
@@ -48,6 +47,5 @@ to call the verify function for that version
48
47
#### Signature
49
48
50
49
``` python
51
- def verifyConverted (packName : str ) -> bool :
52
- ...
50
+ def verifyConverted (packName : str ) -> bool : ...
53
51
```
Original file line number Diff line number Diff line change @@ -31,8 +31,7 @@ Make the dir if not exists
31
31
#### Signature
32
32
33
33
``` python
34
- def assureDirExists (directory : str , root : str ) -> str :
35
- ...
34
+ def assureDirExists (directory : str , root : str ) -> str : ...
36
35
```
37
36
38
37
@@ -52,8 +51,7 @@ Convert the webp images into png and gif images
52
51
#### Signature
53
52
54
53
``` python
55
- async def convertPack (swd : str , packName : str , noCache = False ):
56
- ...
54
+ async def convertPack (swd : str , packName : str , noCache = False ): ...
57
55
```
58
56
59
57
@@ -75,8 +73,7 @@ Convert the webp file to png
75
73
#### Signature
76
74
77
75
``` python
78
- def convertWithPIL (inputFile : str ) -> str :
79
- ...
76
+ def convertWithPIL (inputFile : str ) -> str : ...
80
77
```
81
78
82
79
@@ -103,8 +100,7 @@ c957a57000626a2dc3cb69bf0e79c91c6b196b74d4d6ca1cbb830d3ad0ad4e36
103
100
``` python
104
101
async def downloadPack (
105
102
packId : str , packKey : str , cwd : str = os.getcwd()
106
- ) -> tuple[str , str ]:
107
- ...
103
+ ) -> tuple[str , str ]: ...
108
104
```
109
105
110
106
@@ -127,6 +123,5 @@ Save a sticker
127
123
#### Signature
128
124
129
125
``` python
130
- def saveSticker (sticker : Sticker, path : str ) -> str :
131
- ...
126
+ def saveSticker (sticker : Sticker, path : str ) -> str : ...
132
127
```
Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ cli entry point
18
18
#### Signature
19
19
20
20
``` python
21
- def cli ():
22
- ...
21
+ def cli (): ...
23
22
```
24
23
25
24
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " sigstickers"
3
- version = " 2023 "
3
+ version = " 2024 "
4
4
license = " mit"
5
5
description = " Download sticker packs from Signal"
6
6
authors = [" FredHappyface" ]
@@ -22,18 +22,18 @@ readme = "README.md"
22
22
23
23
[tool .poetry .dependencies ]
24
24
python = " ^3.8"
25
- Pillow = " <11,>=10.0 .0"
25
+ Pillow = " <11,>=10.2 .0"
26
26
signalstickers-client = " <4,>=3.3.0"
27
- emoji = " <3,>=2.8 .0"
27
+ emoji = " <3,>=2.9 .0"
28
28
29
29
[tool .poetry .scripts ]
30
30
sigstickers = " sigstickers:cli"
31
31
32
32
[tool .poetry .group .dev .dependencies ]
33
- pytest = " ^7.4.0 "
34
- pylint = " ^2.17.5 "
35
- handsdown = " ^2.0.1 "
36
- coverage = " ^7.3 .0"
33
+ pytest = " ^7.4.4 "
34
+ pylint = " ^3.0.3 "
35
+ handsdown = " ^2.1.0 "
36
+ coverage = " ^7.4 .0"
37
37
38
38
[tool .black ]
39
39
line-length = 100
Original file line number Diff line number Diff line change 1
- Pillow < 11 ,>= 10.0 .0
2
- emoji < 3 ,>= 2.8 .0
1
+ Pillow < 11 ,>= 10.2 .0
2
+ emoji < 3 ,>= 2.9 .0
3
3
signalstickers-client < 4 ,>= 3.3.0
You can’t perform that action at this time.
0 commit comments