Skip to content

Commit 30fd926

Browse files
committed
Added missing requirement
1 parent 59d35e3 commit 30fd926

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import find_packages, setup # noqa: H301
1313

1414
NAME = "python-leetcode"
15-
VERSION = "1.0.8"
15+
VERSION = "1.0.9"
1616

1717
with open("README.md") as readme:
1818
DESCRIPTION = readme.read()
@@ -24,7 +24,7 @@
2424
# prerequisite: setuptools
2525
# http://pypi.python.org/pypi/setuptools
2626

27-
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
27+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "requests"]
2828

2929
setup(
3030
name=NAME,
@@ -48,5 +48,5 @@
4848
"Programming Language :: Python :: 3.8",
4949
"Programming Language :: Python :: 3.9",
5050
],
51-
python_requires='>=3.8',
51+
python_requires=">=3.8",
5252
)

0 commit comments

Comments
 (0)