Skip to content

Commit 9d306b4

Browse files
committed
fix build
1 parent d0ecdf6 commit 9d306b4

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

git_push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git_repo_id=$2
88
release_note=$3
99

1010
if [ "$git_user_id" = "" ]; then
11-
git_user_id="prius"
11+
git_user_id="fspv"
1212
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
1313
fi
1414

setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
# prerequisite: setuptools
2727
# http://pypi.python.org/pypi/setuptools
2828

29-
with open("requirements.txt") as requirements:
30-
REQUIRES = [req.replace("\n", "") for req in requirements.readlines()]
31-
3229
setup(
3330
name=NAME,
3431
version=VERSION,
@@ -37,7 +34,14 @@
3734
author_email="[email protected]",
3835
url="https://github.com/fspv/python-leetcode",
3936
keywords=["leetcode", "faang", "interview", "api"],
40-
install_requires=REQUIRES,
37+
install_requires=[
38+
"certifi >= 14.05.14",
39+
"six >= 1.10",
40+
"python_dateutil >= 2.5.3",
41+
"setuptools >= 21.0.0",
42+
"urllib3 >= 1.15.1",
43+
"requests",
44+
],
4145
packages=find_packages(),
4246
include_package_data=True,
4347
long_description=DESCRIPTION,

0 commit comments

Comments
 (0)