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
- The version check in setupext is unnecessary as we're already checking
at the very top of setup.py (note that no one even bothered updating
the version value in setupext...).
- The InstallRequires can be merged e.g. into Matplotlib, which removes
two completely uninformative lines from the build log
```
REQUIRED DEPENDENCIES AND EXTENSIONS
install_requires: yes [handled by setuptools]
```
- Changing the message widths and indents (which was only possible after
removing the "install_requires" entry in the log) allows fitting the
python version, in the common linux case, on a single line:
```
python: yes [3.7.2 (default, Jan 10 2019, 23:51:51) [GCC 8.2.1 20181127]]
```
instead of
```
python: yes [3.7.2 (default, Jan 10 2019, 23:51:51) [GCC 8.2.1
20181127]]
```
0 commit comments