Skip to content

Commit 7367ff9

Browse files
committed
rel 2024 update dependencies
1 parent 798dd60 commit 7367ff9

File tree

6 files changed

+21
-25
lines changed

6 files changed

+21
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All major and minor version changes will be documented in this file. Details of
44
patch-level version changes can be found in [commit messages](../../commits/master).
55

6+
## 2024 - 2024/01/07
7+
8+
- update dependencies
9+
610
## 2023 - 2023/08/31
711

812
- Update deps

documentation/reference/sigstickers/caching.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ Write cache data to a file identified by packName
2424
#### Signature
2525

2626
```python
27-
def createConverted(packName: str, data: dict):
28-
...
27+
def createConverted(packName: str, data: dict): ...
2928
```
3029

3130

@@ -48,6 +47,5 @@ to call the verify function for that version
4847
#### Signature
4948

5049
```python
51-
def verifyConverted(packName: str) -> bool:
52-
...
50+
def verifyConverted(packName: str) -> bool: ...
5351
```

documentation/reference/sigstickers/downloader.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ Make the dir if not exists
3131
#### Signature
3232

3333
```python
34-
def assureDirExists(directory: str, root: str) -> str:
35-
...
34+
def assureDirExists(directory: str, root: str) -> str: ...
3635
```
3736

3837

@@ -52,8 +51,7 @@ Convert the webp images into png and gif images
5251
#### Signature
5352

5453
```python
55-
async def convertPack(swd: str, packName: str, noCache=False):
56-
...
54+
async def convertPack(swd: str, packName: str, noCache=False): ...
5755
```
5856

5957

@@ -75,8 +73,7 @@ Convert the webp file to png
7573
#### Signature
7674

7775
```python
78-
def convertWithPIL(inputFile: str) -> str:
79-
...
76+
def convertWithPIL(inputFile: str) -> str: ...
8077
```
8178

8279

@@ -103,8 +100,7 @@ c957a57000626a2dc3cb69bf0e79c91c6b196b74d4d6ca1cbb830d3ad0ad4e36
103100
```python
104101
async def downloadPack(
105102
packId: str, packKey: str, cwd: str = os.getcwd()
106-
) -> tuple[str, str]:
107-
...
103+
) -> tuple[str, str]: ...
108104
```
109105

110106

@@ -127,6 +123,5 @@ Save a sticker
127123
#### Signature
128124

129125
```python
130-
def saveSticker(sticker: Sticker, path: str) -> str:
131-
...
126+
def saveSticker(sticker: Sticker, path: str) -> str: ...
132127
```

documentation/reference/sigstickers/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ cli entry point
1818
#### Signature
1919

2020
```python
21-
def cli():
22-
...
21+
def cli(): ...
2322
```
2423

2524

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sigstickers"
3-
version = "2023"
3+
version = "2024"
44
license = "mit"
55
description = "Download sticker packs from Signal"
66
authors = ["FredHappyface"]
@@ -22,18 +22,18 @@ readme = "README.md"
2222

2323
[tool.poetry.dependencies]
2424
python = "^3.8"
25-
Pillow = "<11,>=10.0.0"
25+
Pillow = "<11,>=10.2.0"
2626
signalstickers-client = "<4,>=3.3.0"
27-
emoji = "<3,>=2.8.0"
27+
emoji = "<3,>=2.9.0"
2828

2929
[tool.poetry.scripts]
3030
sigstickers = "sigstickers:cli"
3131

3232
[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"
3737

3838
[tool.black]
3939
line-length = 100

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Pillow<11,>=10.0.0
2-
emoji<3,>=2.8.0
1+
Pillow<11,>=10.2.0
2+
emoji<3,>=2.9.0
33
signalstickers-client<4,>=3.3.0

0 commit comments

Comments
 (0)