Commit 4b6d298
committed
setup: update install command
Using `pip install .` instead of `python setup.py install` is a modern
way to install local package [1]. With outdated way, setuptools+pip fail
to resolve dependencies for different versions (in our case,
Python 3.6 and Python 3.7 runs will fail with "No module named 'numpy'"
on pandas install while trying to install unsupported latest version).
Excessive build_py stage is also skipped.
1. https://setuptools.pypa.io/en/latest/userguide/quickstart.html
Part of #2381 parent df797c1 commit 4b6d298
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments