Re: Call for testing: New setup.py

2007-12-23 Thread Matt Good
On Oct 16 2006, 2:03 pm, "Adrian Holovaty" <[EMAIL PROTECTED]> wrote: > I've refactored Django's setup.py so that it uses the plain Python > distutils installation method rather than ez_setup/setuptools. This > means it no longer requires an Internet connection to install Django. > Hooray! From w

Re: Call for testing: New setup.py

2006-10-22 Thread AlexL
Worked fine. WinXP SP2, Python 2.4.2 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from this group,

Re: Call for testing: New setup.py

2006-10-19 Thread [EMAIL PROTECTED]
Adrian Holovaty wrote: > I've refactored Django's setup.py so that it uses the plain Python > distutils installation method rather than ez_setup/setuptools. This > means it no longer requires an Internet connection to install Django. > Hooray! Works for me: Python2.4 on Windows XP SP2 Lorenzo

Re: Call for testing: New setup.py

2006-10-18 Thread evariste
Works fine for me on OS X 10.4.8, Python 2.4, Intel platform. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To uns

Re: Call for testing: New setup.py

2006-10-18 Thread Will McCutchen
sbain wrote: > How would one now recommend that a new Windows developer install Django > in a such a way as to facilitate keeping his Django updated to the > trunk? I only dabble with Django from time to time, but here is how I have it set up (the following assumes C:\Python24\ as the root): 1.

Re: Call for testing: New setup.py

2006-10-17 Thread sbain
Is there any reason to use either setuptools or distutils if one is doing an automated install of Django? Isn't it just copy or link the django directory to the Python path, copy django-admin.py to an executable path, and you are pretty much done? How would one now recommend that a new Windows de

Re: Re: Call for testing: New setup.py

2006-10-17 Thread James Bennett
On 10/17/06, sbain <[EMAIL PROTECTED]> wrote: > The developer version of Django is made available only via Subversion, > so the requirement for internet access at install is hardly a > disadvantage. Django is, after all, a web framework! It is, but the setuptools requirement of an active internet

Re: Call for testing: New setup.py

2006-10-17 Thread sbain
I missed the previous discussion, but I'm not pleased with this change. The developer version of Django is made available only via Subversion, so the requirement for internet access at install is hardly a disadvantage. Django is, after all, a web framework! The best way to install development Dj

Re: Call for testing: New setup.py

2006-10-17 Thread DavidA
DavidA wrote: > I spoke too soon. I _really_ spoke too soon. I tried again as 'python setup.py install' rather than 'setup.py install' and it worked. For some reason my file type mapping on this particular Win box was mucked up. --~--~-~--~~~---~--~~ You receiv

Re: Call for testing: New setup.py

2006-10-17 Thread DavidA
DavidA wrote: > Works on Windows 2003 Server SP1 + Python 2.4.2 I spoke too soon. I tried to run 'manage.py test' and it complained about an invalid action so I poked around and the management.py in C:\Python24\lib\site-packages\django\core was different than the one in the SVN checkout director

Re: Call for testing: New setup.py

2006-10-17 Thread DavidA
Works on Windows 2003 Server SP1 + Python 2.4.2 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from

Re: Call for testing: New setup.py

2006-10-17 Thread James Crasta
works here, python 2.5, linux x86_64 (gentoo) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from thi

Re: Call for testing: New setup.py

2006-10-17 Thread dummy
Hi, one diff for MANIFEST.in. The docs/*.txt of bdist_rpm are missing! Regards, Dirk -- GMX DSL-Flatrate 0,- Euro* - Überall, wo DSL verfügbar ist! NEU: Jetzt bis zu 16.000 kBit/s! http://www.gmx.net/de/go/dsl --~--~-~--~~~---~--~~ You received this message beca

Re: Call for testing: New setup.py

2006-10-16 Thread Matthew Flanagan
Hi Adrian, On 17/10/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > Hi all, > > I've refactored Django's setup.py so that it uses the plain Python > distutils installation method rather than ez_setup/setuptools. This > means it no longer requires an Internet connection to install Django. > Hoo

Re: Call for testing: New setup.py

2006-10-16 Thread Jay Parlar
OS X 10.3.9 with Python 2.4.3 seems fine. Jay P. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from

Re: Call for testing: New setup.py

2006-10-16 Thread Joseph Heck
WinXP, Python 2.43 - worked OK for me. Dropped all the goodies into c:\python24\lib\site-packages\django...-joeOn 10/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Didn't work for me on Windows XP with python 2.4.3...what I got isthis:> C:\Documents and Settings\floguy\Desktop\newdjango>setup

Re: Call for testing: New setup.py

2006-10-16 Thread [EMAIL PROTECTED]
Didn't work for me on Windows XP with python 2.4.3...what I got is this: > C:\Documents and Settings\floguy\Desktop\newdjango>setup.py install > running install > > running build > running build_py > running build_scripts > creating build > creating build\scripts-2.4 > copying and adjusting djang

Re: Call for testing: New setup.py

2006-10-16 Thread Jay Parlar
On 10/16/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > But I have only tested this on Linux, so I'd appreciate it if folks > could test out the command "python setup.py install" on various > different platforms. Just grab the SVN version of Django and try > installing it using "python setup.py

Re: Call for testing: New setup.py

2006-10-16 Thread Joseph Kocherhans
On 10/16/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > But I have only tested this on Linux, so I'd appreciate it if folks > could test out the command "python setup.py install" on various > different platforms. Just grab the SVN version of Django and try > installing it using "python setup.p

Call for testing: New setup.py

2006-10-16 Thread Adrian Holovaty
Hi all, I've refactored Django's setup.py so that it uses the plain Python distutils installation method rather than ez_setup/setuptools. This means it no longer requires an Internet connection to install Django. Hooray! But I have only tested this on Linux, so I'd appreciate it if folks could t