Skip to content

Commit 798dd60

Browse files
committed
2023
1 parent 25147e7 commit 798dd60

File tree

6 files changed

+19
-20
lines changed

6 files changed

+19
-20
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+
## 2023 - 2023/08/31
7+
8+
- Update deps
9+
610
## 2022.1.1 - 2022/06/25
711

812
- Fix: use `os.makedirs` instead of `os.mkdir`

documentation/reference/sigstickers/caching.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,4 @@ to call the verify function for that version
5050
```python
5151
def verifyConverted(packName: str) -> bool:
5252
...
53-
```
54-
55-
53+
```

documentation/reference/sigstickers/downloader.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,4 @@ Save a sticker
129129
```python
130130
def saveSticker(sticker: Sticker, path: str) -> str:
131131
...
132-
```
133-
134-
132+
```

documentation/reference/sigstickers/module.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
Module
66

77
> Auto-generated documentation for [sigstickers.__main__](../../../sigstickers/__main__.py) module.
8-
98
- [Module](#module)

pyproject.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sigstickers"
3-
version = "2022.1.1"
3+
version = "2023"
44
license = "mit"
55
description = "Download sticker packs from Signal"
66
authors = ["FredHappyface"]
@@ -21,19 +21,19 @@ documentation = "https://github.com/FHPythonUtils/SigStickers/blob/master/README
2121
readme = "README.md"
2222

2323
[tool.poetry.dependencies]
24-
python = "^3.7"
25-
Pillow = "<10,>=9.5.0"
26-
signalstickers-client = "<4,>=3.2.0"
27-
emoji = "<3,>=2.5.1"
24+
python = "^3.8"
25+
Pillow = "<11,>=10.0.0"
26+
signalstickers-client = "<4,>=3.3.0"
27+
emoji = "<3,>=2.8.0"
2828

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

32-
[tool.poetry.dev-dependencies]
33-
pytest = "^7.1.1"
34-
coverage = "^6.3.2"
35-
handsdown = "^1.1.0"
36-
pylint = "^2.13.5"
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"
3737

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

requirements.txt

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

0 commit comments

Comments
 (0)