Skip to content

Commit 4d5a8f6

Browse files
committed
rel 2022.1.1
1 parent 8244643 commit 4d5a8f6

File tree

129 files changed

+73
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+73
-26
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions

README.md

Lines changed: 35 additions & 3 deletions
-1.19 KB

pyproject.toml

Lines changed: 32 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tstickers"
3-
version = "2022.1"
3+
version = "2022.1.1"
44
license = "mit"
55
description = "Download sticker packs from Telegram"
66
authors = ["FredHappyface"]
@@ -13,7 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: Implementation :: CPython",
1414
"Topic :: Software Development :: Libraries :: Python Modules",
1515
"Topic :: Utilities",
16-
"Topic :: Multimedia :: Graphics"
16+
"Topic :: Multimedia :: Graphics",
1717
]
1818
homepage = "https://github.com/FHPythonUtils/TStickers"
1919
repository = "https://github.com/FHPythonUtils/TStickers"
@@ -22,11 +22,11 @@ readme = "README.md"
2222

2323
[tool.poetry.dependencies]
2424
python = ">=3.8,<4.0"
25-
requests = "<3,>=2.27.1"
26-
Pillow = "<10,>=9.0.0"
27-
emoji = "<2,>=1.6.3"
28-
pyrlottie = "<2024,>=2022"
29-
requests-cache = "<2,>=0.9.1"
25+
requests = "^2.31.0"
26+
Pillow = "^9.5.0"
27+
emoji = "^2.5.1"
28+
pyrlottie = "^2022.0.2"
29+
requests-cache = "^1.0.1"
3030

3131
[tool.poetry.scripts]
3232
tstickers = "tstickers:cli"
@@ -37,6 +37,18 @@ pylint = "^2.13.5"
3737
handsdown = "^1.1.0"
3838
coverage = "^6.3.2"
3939

40+
[tool.black]
41+
line-length = 100
42+
target-version = ["py38"]
43+
44+
[tool.isort]
45+
profile = "black"
46+
indent = "Tab"
47+
48+
[tool.pydocstyle]
49+
convention = "google"
50+
ignore = "D205,D415"
51+
4052
[build-system]
4153
requires = ["poetry-core"]
4254
build-backend = "poetry.core.masonry.api"
@@ -56,20 +68,18 @@ ignore-paths = ["tests"]
5668

5769
[tool.pylint.messages_control]
5870
enable = ["F", "E", "W", "R", "C"]
59-
disable = [
60-
"pointless-string-statement",
61-
"superfluous-parens",
62-
"bad-continuation"
63-
]
71+
disable = ["pointless-string-statement", "superfluous-parens"]
6472

65-
[tool.black]
66-
line-length = 100
67-
target-version = ["py37"]
68-
69-
[tool.isort]
70-
profile = "black"
71-
indent = "Tab"
73+
[tool.tox]
74+
legacy_tox_ini = """
75+
[tox]
76+
env_list =
77+
py311
78+
py310
79+
py39
80+
py38
7281
73-
[tool.pydocstyle]
74-
convention = "google"
75-
ignore = "D205,D415"
82+
[testenv]
83+
deps = pytest
84+
commands = pytest tests
85+
"""
-78.2 KB
Binary file not shown.
-70.7 KB
Binary file not shown.
-98.9 KB
Binary file not shown.
-61.6 KB
Binary file not shown.
-87.3 KB
Binary file not shown.
-67.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)