Skip to content

Commit

Permalink
rel 2024 update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Jan 7, 2024
1 parent 798dd60 commit 7367ff9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 25 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).

## 2024 - 2024/01/07

- update dependencies

## 2023 - 2023/08/31

- Update deps
Expand Down
6 changes: 2 additions & 4 deletions documentation/reference/sigstickers/caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ Write cache data to a file identified by packName
#### Signature

```python
def createConverted(packName: str, data: dict):
...
def createConverted(packName: str, data: dict): ...
```


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

```python
def verifyConverted(packName: str) -> bool:
...
def verifyConverted(packName: str) -> bool: ...
```
15 changes: 5 additions & 10 deletions documentation/reference/sigstickers/downloader.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ Make the dir if not exists
#### Signature

```python
def assureDirExists(directory: str, root: str) -> str:
...
def assureDirExists(directory: str, root: str) -> str: ...
```


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

```python
async def convertPack(swd: str, packName: str, noCache=False):
...
async def convertPack(swd: str, packName: str, noCache=False): ...
```


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

```python
def convertWithPIL(inputFile: str) -> str:
...
def convertWithPIL(inputFile: str) -> str: ...
```


Expand All @@ -103,8 +100,7 @@ c957a57000626a2dc3cb69bf0e79c91c6b196b74d4d6ca1cbb830d3ad0ad4e36
```python
async def downloadPack(
packId: str, packKey: str, cwd: str = os.getcwd()
) -> tuple[str, str]:
...
) -> tuple[str, str]: ...
```


Expand All @@ -127,6 +123,5 @@ Save a sticker
#### Signature

```python
def saveSticker(sticker: Sticker, path: str) -> str:
...
def saveSticker(sticker: Sticker, path: str) -> str: ...
```
3 changes: 1 addition & 2 deletions documentation/reference/sigstickers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ cli entry point
#### Signature

```python
def cli():
...
def cli(): ...
```


Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sigstickers"
version = "2023"
version = "2024"
license = "mit"
description = "Download sticker packs from Signal"
authors = ["FredHappyface"]
Expand All @@ -22,18 +22,18 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
Pillow = "<11,>=10.0.0"
Pillow = "<11,>=10.2.0"
signalstickers-client = "<4,>=3.3.0"
emoji = "<3,>=2.8.0"
emoji = "<3,>=2.9.0"

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

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pylint = "^2.17.5"
handsdown = "^2.0.1"
coverage = "^7.3.0"
pytest = "^7.4.4"
pylint = "^3.0.3"
handsdown = "^2.1.0"
coverage = "^7.4.0"

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

0 comments on commit 7367ff9

Please sign in to comment.