Re: Contribute to Django - Python 3 or Python 2

2016-07-02 Thread premdjango
Thanks Michael, That was the confusion. I will go ahead with Python 3. On Tuesday, June 28, 2016 at 7:45:02 PM UTC-4, premdjango wrote: > > Hello, > Im trying to contribute to Django project and started with this document. > > https://docs.djangoproject.com/en/dev/intro/contributing/ > > Here in

Re: Contribute to Django - Python 3 or Python 2

2016-07-02 Thread Michal Petrucha
On Sat, Jul 02, 2016 at 07:04:31AM -0700, premdjango wrote: > Tim - > The reason I said its used in most of the places is because - > > for example: > > pip install -e /path/to/your/local/clone/django/ > > > I would expect pip3 install of pip.. This looks like a bit of a misunderstanding. Us

Re: Contribute to Django - Python 3 or Python 2

2016-07-02 Thread premdjango
Tim - The reason I said its used in most of the places is because - for example: pip install -e /path/to/your/local/clone/django/ I would expect pip3 install of pip.. On Tuesday, June 28, 2016 at 7:45:02 PM UTC-4, premdjango wrote: > > Hello, > Im trying to contribute to Django project an

Re: Contribute to Django - Python 3 or Python 2

2016-07-02 Thread manikos
+1 to all the above about using python 3. If I was contributing to Django I would definetely go with python 3. It's the future. On Wednesday, June 29, 2016 at 2:45:02 AM UTC+3, premdjango wrote: > > Hello, > Im trying to contribute to Django project and started with this document. > > https://doc

Re: Contribute to Django - Python 3 or Python 2

2016-07-01 Thread ludovic coues
https://docs.djangoproject.com/en/dev/releases/1.11/ "The Django 1.11.x series is the last to support Python 2. The next major release, Django 2.0, will only support Python 3.5+." But your point remains valid. It make more sense to use python 3 as it will be the only option available soon and som

Re: Contribute to Django - Python 3 or Python 2

2016-06-30 Thread Ricardo Daniel Quiroga
the next django releases don't suport python 2.x. if you want to use python 2.x in django use the 1.8 LTS http://stackoverflow.com/questions/28908401/does-django-have-any-plans-to-drop-support-for-python-2-in-the-near-future https://www.djangoproject.com/weblog/2015/jun/25/roadmap/ 2016-06-28 22:

Re: Contribute to Django - Python 3 or Python 2

2016-06-28 Thread Tim Graham
You can use either, but use Python 3. You can rely on the continuous integration server to test your pull request on Python 2 and debug any issues Can you given an example of "most places python2 is used"? In fact, the tutorial says, "This tutorial assumes you are using Python 3." On Tuesday,

Re: Contribute to Django - Python 3 or Python 2

2016-06-28 Thread Farhan Khan
I switched from Python2 to Python3 because I needed my Django code to fire off some TLSv1.2 code, that python2 could not do. I barely notice the difference between the two except in very small syntax differences. When I switched from python2 to python3, I literally did this: find ./ -name "*.py

Contribute to Django - Python 3 or Python 2

2016-06-28 Thread premdjango
Hello, Im trying to contribute to Django project and started with this document. https://docs.djangoproject.com/en/dev/intro/contributing/ Here in couple of places I see Python3 is being used but in most places python2 is used. Should I use Python 3 or Python 2? -- You received this message