Skip to content

Commit 86c3a14

Browse files
authored
Merge pull request #1187 from JuliaSprenger/fix/install_all
Fix installation of "all" dependencies
2 parents 6d33639 + 2c992c6 commit 86c3a14

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
}
2323
extras_require["all"] = sum(extras_require.values(), [])
2424

25+
# explicitly removing stfio from list of all as it is not pip installable
26+
extras_require["all"].remove('stfio')
27+
2528
with open("neo/version.py") as fp:
2629
d = {}
2730
exec(fp.read(), d)

0 commit comments

Comments
 (0)