Skip to content

Commit 99a6a5e

Browse files
committed
Fix lottie req & bump ver
1 parent ab8662b commit 99a6a5e

File tree

5 files changed

+172
-10
lines changed

5 files changed

+172
-10
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pymongo = {extras = ["srv"], version = "*"} # Required by motor
2121
python-dateutil = "~=2.8.1"
2222
python-dotenv = "==0.20.0"
2323
uvloop = {version = ">=0.15.2", markers = "sys_platform != 'win32'"}
24-
lottie = "==0.6.11"
24+
lottie = {version = "==0.6.11", extras = ["pdf"]}
2525
typing-extensions = "==4.2.0"
2626

2727
[scripts]

Pipfile.lock

Lines changed: 156 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.0-dev10"
1+
__version__ = "4.0.0-dev11"
22

33

44
import asyncio

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ extend-exclude = '''
2121

2222
[tool.poetry]
2323
name = 'Modmail'
24-
version = '4.0.0-dev10'
24+
version = '4.0.0-dev11'
2525
description = "Modmail is similar to Reddit's Modmail, both in functionality and purpose. It serves as a shared inbox for server staff to communicate with their users in a seamless way."
2626
license = 'AGPL-3.0-only'
2727
authors = [

requirements.txt

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,33 @@ aiohttp==3.8.1
1010
aiosignal==1.2.0; python_version >= '3.6'
1111
async-timeout==4.0.2; python_version >= '3.6'
1212
attrs==21.4.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
13-
charset-normalizer==2.0.12; python_version >= '3.5'
13+
cairocffi==1.3.0; python_version >= '3.7'
14+
cairosvg==2.5.2
15+
cffi==1.15.0
16+
charset-normalizer==2.0.12; python_version >= '3.5'
1417
colorama==0.4.4
18+
cssselect2==0.6.0; python_version >= '3.7'
19+
defusedxml==0.7.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
1520
dnspython==2.2.1; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
1621
emoji==1.7.0
1722
frozenlist==1.3.0; python_version >= '3.7'
23+
git+https://github.com/Rapptz/discord.py.git@a14b43f2fda863ed6555374eb872bf014bdd1adf#egg=discord-py
1824
git+https://github.com/Rapptz/discord.py.git@a14b43f2fda863ed6555374eb872bf014bdd1adf#egg=discord.py
1925
idna==3.3; python_version >= '3.5'
2026
isodate==0.6.1
21-
lottie==0.6.11
27+
lottie[pdf]==0.6.11
2228
motor==2.5.1
2329
multidict==6.0.2; python_version >= '3.7'
2430
natural==0.2.0
2531
parsedatetime==2.6
26-
pymongo[srv]==3.12.3
32+
pillow==9.1.0; python_version >= '3.7'
33+
pycparser==2.21
34+
pymongo==3.12.3
2735
python-dateutil==2.8.2
2836
python-dotenv==0.20.0
2937
six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
38+
tinycss2==1.1.1; python_version >= '3.6'
3039
typing-extensions==4.2.0
3140
uvloop==0.16.0; sys_platform != 'win32'
41+
webencodings==0.5.1
3242
yarl==1.7.2; python_version >= '3.6'

0 commit comments

Comments
 (0)