Skip to content

Commit 228bc13

Browse files
committed
add futures to blacklist due to critical bug (see ywangd#405)
1 parent 2ef593b commit 228bc13

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

data/pip_blacklist.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"lowlevel_os": "This package uses (relatively) low-level OS functions, which can not be used with Pythonista.",
88
"processes": "This package requires process interaction, which is not possible on iOS",
99
"bundled": "This package is already bundled with Pythonista",
10-
"incompatible_dependency": "This package has one or more dependencies which are incompatible with Pythonista."
10+
"incompatible_dependency": "This package has one or more dependencies which are incompatible with Pythonista.",
11+
"bugged": "Installation of this packages is currently critically bugged."
1112
},
1213
"blacklist": {
1314
"stash": ["is_stash", true, null],
@@ -19,6 +20,7 @@
1920
"scipy": ["C", true, null],
2021
"tensorflow": ["C", true, null],
2122
"pyobjc": ["C", true, null],
22-
"pyttsx3": ["incompatible_dependency", true, null]
23+
"pyttsx3": ["incompatible_dependency", true, null],
24+
"futures": ["bugged", true, null]
2325
}
2426
}

0 commit comments

Comments
 (0)