You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 #238
0 commit comments