Skip to content

Commit d0604ec

Browse files
committed
drop python 3.8 support
1 parent 021a350 commit d0604ec

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.github/workflows/test-lint.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version:
19-
- '3.8'
2019
- '3.9'
2120
- '3.10'
2221
- '3.11'

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+
## 2025 - 2025/02/16
7+
8+
- drop support for python 3.8
9+
610
## 2024.1 - 2024/03/17
711

812
- update deps

pyproject.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "sigstickers"
33
version = "2025"
44
description = "Download sticker packs from Signal"
55
authors = [{ name = "FredHappyface" }]
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.9"
77
readme = "README.md"
88
license = "mit"
99
classifiers = [
@@ -18,10 +18,10 @@ classifiers = [
1818
"Topic :: Multimedia :: Graphics",
1919
]
2020
dependencies = [
21-
"Pillow<11,>=10.2.0",
22-
"signalstickers-client<4,>=3.3.0",
23-
"emoji<3,>=2.10.1",
24-
"loguru<2,>=0.7.2",
21+
"emoji>=2.14.1",
22+
"loguru>=0.7.3",
23+
"pillow>=11.1.0",
24+
"signalstickers-client>=3.3.0",
2525
]
2626

2727
[project.urls]
@@ -34,13 +34,13 @@ sigstickers = "sigstickers:cli"
3434

3535
[dependency-groups]
3636
dev = [
37-
"pytest>=8.1.1,<9",
38-
"handsdown>=2.1.0,<3",
39-
"coverage>=7.4.4,<8",
40-
"ruff>=0.3.3,<0.4",
41-
"pyright>=1.1.354,<2",
42-
"pytest-asyncio>=0.23.5.post1,<0.24",
43-
"safety>=3.3.0",
37+
"coverage>=7.6.12",
38+
"handsdown>=2.1.0",
39+
"pyright>=1.1.394",
40+
"pytest>=8.3.4",
41+
"pytest-asyncio>=0.25.3",
42+
"ruff>=0.9.6",
43+
"safety>=3.3.0",
4444
]
4545

4646
[tool.ruff]

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ httpcore==0.17.3
1212
httpx==0.24.1
1313
idna==3.10
1414
loguru==0.7.3
15-
pillow==10.4.0
15+
pillow==11.1.0
1616
protobuf==3.20.3
1717
pycparser==2.22
1818
signalstickers-client==3.3.0
1919
sniffio==1.3.1
20-
typing-extensions==4.12.2 ; python_full_version < '3.9'
2120
win32-setctime==1.2.0 ; sys_platform == 'win32'

0 commit comments

Comments
 (0)