Skip to content

Commit

Permalink
2023
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Aug 31, 2023
1 parent 25147e7 commit 798dd60
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).

## 2023 - 2023/08/31

- Update deps

## 2022.1.1 - 2022/06/25

- Fix: use `os.makedirs` instead of `os.mkdir`
Expand Down
4 changes: 1 addition & 3 deletions documentation/reference/sigstickers/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,4 @@ to call the verify function for that version
```python
def verifyConverted(packName: str) -> bool:
...
```


```
4 changes: 1 addition & 3 deletions documentation/reference/sigstickers/downloader.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,4 @@ Save a sticker
```python
def saveSticker(sticker: Sticker, path: str) -> str:
...
```


```
1 change: 0 additions & 1 deletion documentation/reference/sigstickers/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
Module

> Auto-generated documentation for [sigstickers.__main__](../../../sigstickers/__main__.py) module.
- [Module](#module)
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sigstickers"
version = "2022.1.1"
version = "2023"
license = "mit"
description = "Download sticker packs from Signal"
authors = ["FredHappyface"]
Expand All @@ -21,19 +21,19 @@ documentation = "https://github.com/FHPythonUtils/SigStickers/blob/master/README
readme = "README.md"

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

[tool.poetry.scripts]
sigstickers = "sigstickers:cli"

[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
coverage = "^6.3.2"
handsdown = "^1.1.0"
pylint = "^2.13.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylint = "^2.17.5"
handsdown = "^2.0.1"
coverage = "^7.3.0"

[tool.black]
line-length = 100
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Pillow<10,>=9.5.0
emoji<3,>=2.5.1
signalstickers-client<4,>=3.2.0
Pillow<11,>=10.0.0
emoji<3,>=2.8.0
signalstickers-client<4,>=3.3.0

0 comments on commit 798dd60

Please sign in to comment.