Re: Using Makefiles in Python projects

2019-11-09 Thread Pankaj Jangid
Chris Angelico writes: > On Sun, Nov 10, 2019 at 2:10 AM Thomas Jollans wrote: >> On 07/11/2019 20:20, Vitaly Potyarkin wrote: >> > What do you think of using Makefiles for automating common chores in >> > Python projects? Like linting, type checking and testing? >> > >> > I've come up with a reu

Re: Using Makefiles in Python projects

2019-11-09 Thread Chris Angelico
On Sun, Nov 10, 2019 at 11:09 AM Skip Montanaro wrote: > Thomas: > > > That's why I say "a bit of a hassle". You can get a MSYS set up (whether > > from Git for Windows or otherwise). You can get it to play nice with the > > right Python installation and the Python scripts you presumably want to >

Re: Using Makefiles in Python projects

2019-11-09 Thread Skip Montanaro
(Sorry, not 100% sure of the credit for this quote, Vitaly, perhaps?) > >> If your software runs on Windows, of you think it might run on Windows > >> in the future, maybe consider writing simple Python scripts for > >> platform-independent tasks rather than makefiles and shell scripts. Maybe try

Re: Using Makefiles in Python projects

2019-11-09 Thread Thomas Jollans
On 09/11/2019 21:30, Chris Angelico wrote: On Sun, Nov 10, 2019 at 2:10 AM Thomas Jollans wrote: On 07/11/2019 20:20, Vitaly Potyarkin wrote: What do you think of using Makefiles for automating common chores in Python projects? Like linting, type checking and testing? I've come up with a reus

Re: Using Makefiles in Python projects

2019-11-09 Thread Chris Angelico
On Sun, Nov 10, 2019 at 2:10 AM Thomas Jollans wrote: > > On 07/11/2019 20:20, Vitaly Potyarkin wrote: > > What do you think of using Makefiles for automating common chores in > > Python projects? Like linting, type checking and testing? > > > > I've come up with a reusable Makefile for automating

Re: Using Makefiles in Python projects

2019-11-09 Thread Thomas Jollans
On 07/11/2019 20:20, Vitaly Potyarkin wrote: What do you think of using Makefiles for automating common chores in Python projects? Like linting, type checking and testing? I've come up with a reusable Makefile for automating virtual environment management in Python projects. I think it can be us