Skip to content

Commit f976165

Browse files
committed
Sort pipfile
1 parent 04dc08b commit f976165

File tree

4 files changed

+16
-17
lines changed

4 files changed

+16
-17
lines changed

Pipfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@ url = "https://pypi.org/simple"
44
verify_ssl = true
55

66
[dev-packages]
7-
black = "==21.6b0"
8-
pylint = "~=2.9.3"
97
bandit = "~=1.7.0"
8+
black = "==21.6b0"
109
flake8 = "~=3.9.2"
10+
pylint = "~=2.9.3"
1111

1212
[packages]
13+
aiohttp = "==3.7.4.post0"
1314
colorama = "~=0.4.4"
14-
python-dateutil = "~=2.8.1"
15+
"discord.py" = "==1.7.3"
1516
emoji = "~=1.2.0"
16-
uvloop = {version = ">=0.15.2",sys_platform = "!= 'win32'"}
17+
isodate = "~=0.6.0"
1718
motor = "~=2.4.0"
1819
natural = "~=0.2.0"
19-
isodate = "~=0.6.0"
2020
parsedatetime = "~=2.6"
21-
aiohttp = "==3.7.4.post0"
22-
python-dotenv = ">=0.18.0"
23-
"discord.py" = "==1.7.3"
21+
python-dateutil = "~=2.8.1"
22+
python-dotenv = "~=0.18.0"
23+
uvloop = {version = ">=0.15.2", markers = "sys_platform != 'win32'"}
2424

2525
[scripts]
2626
bot = "python bot.py"

Pipfile.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bot.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1695,9 +1695,9 @@ def main():
16951695
pass
16961696

16971697
# check discord version
1698-
if discord.__version__ != "1.6.0":
1698+
if discord.__version__ != "1.7.3":
16991699
logger.error(
1700-
"Dependencies are not updated, run pipenv install. discord.py version expected 1.6.0, received %s",
1700+
"Dependencies are not updated, run pipenv install. discord.py version expected 1.7.3, received %s",
17011701
discord.__version__,
17021702
)
17031703
sys.exit(0)

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ parsedatetime==2.6
2222
pymongo==3.11.4
2323
python-dateutil==2.8.1
2424
python-dotenv==0.18.0
25-
six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
25+
six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'
2626
typing-extensions==3.10.0.0
2727
uvloop==0.15.2; sys_platform != 'win32'
28-
wheel==0.36.2
2928
yarl==1.6.3; python_version >= '3.6'

0 commit comments

Comments
 (0)