[python-win32] Moving pywin32 source from Sourceforge to Github

2017-10-08 Thread Mark Hammond
Hi all, Sourceforge appears to be in its death throes, and with Python moving to git/github I've decided to do the same. I hope that this might encourage more contributors, particularly for better supporting PyPi/pip, creating wheels etc. Effective immediately, the new repo for pywin32 is https:

Re: [python-win32] Multiple versions of Python

2017-10-08 Thread Vernon D. Cole
Damine: The answer provided by Denis was correct, but is most helpful only in environments where you are developing projects with different prerequisite requirements. For that, you will want to use the Python virtual environment package, aided by virtualenvwrappor.

Re: [python-win32] Multiple versions of Python

2017-10-08 Thread Denis Akhiyarov
This is pywin32 mailing list, but generally you can use virtualenv or conda environments to manage your multiple Python versions from the command-line. Note that PTVS provides convenient ways to add multiple environments to the same Python project from Visual Studio user interface. In essence all t

[python-win32] Multiple versions of Python

2017-10-08 Thread Damien Sykes-Lindley
Hi, Is there any documentation I need to look at if I intend to use Python 2 and 3 on the same Windows machine? Specifically, how to switch versions, how to install things with Pip without causing conflicts etc. I can find such notes describing its use on a Linux system, but nothing for Windows.