Skip to content

Commit c29214f

Browse files
committed
Add futures requirement, test=develop
Signed-off-by: WangXi <[email protected]>
1 parent 9995dd1 commit c29214f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

python/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
flask
22
pathlib2
3+
futures; python_version == "2.7"

python/setup.py.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ if os.getenv("PADDLE_EDL_VERSION"):
4141
max_version, mid_version, min_version = python_version()
4242

4343
REQUIRED_PACKAGES = [
44-
'six >= 1.10.0', 'protobuf >= 3.1.0', "flask", "pathlib2"
44+
'six >= 1.10.0', 'protobuf >= 3.1.0', "flask", "pathlib2",
45+
'futures; python_version == "2.7"'
4546
]
4647

4748
packages=['paddle_edl',

0 commit comments

Comments
 (0)