-
Notifications
You must be signed in to change notification settings - Fork 28
Description
While working on numpy/numpy.org#668 today, I had to edit the numpy.org Makefile to call python3
rather than python
. On Debian 11, there is no python
by default, only python3
.
Since Python 2 is officially EOL, I guess it would be appropriate to switch to calling python3
in this project's Makefile, as well as the ones for numpy.org and scientific-python.org, but I'd like to ask for feedback from users before making a PR that does so. Since users of these projects are on a variety of platforms, including e.g. Windows and Anaconda, I wouldn't want to make a change that would just break it for a different set of users. If necessary, we could define an alias at the beginning of the Makefile that automatically detects which name to use.
What do you think? Thanks.