it is actually only the space in the version in setup.py, here is a
diff to current trunk that would use an underscore instead

Index: setup.py
===================================================================
--- setup.py    (revision 9333)
+++ setup.py    (working copy)
@@ -68,7 +68,7 @@
 # Dynamically calculate the version based on django.VERSION.
 version = __import__('django').get_version()
 if u'SVN' in version:
-    version = ' '.join(version.split(' ')[:-1])
+    version = '_'.join(version.split(' ')[:-1])

 setup(
     name = "Django",


i don't know what the versioning spec is for django so it is hard for
me to tell if this is ok, but it produces a file without spaces when
doing for example python setup.py sdist it genereates Django-1.1_pre-
alpha.tar.gz for the current trunk which should be ok on pypy.



On Nov 3, 10:31 pm, Ian Holsman <[EMAIL PROTECTED]> wrote:
> James Bennett wrote:
> > See the weblog entry:
>
> >http://www.djangoproject.com/weblog/2008/oct/31/101-beta/
>
> > And the downloads page:
>
> >http://www.djangoproject.com/download/
>
> > As previously mentioned, this is mainly a preview to let people get a
> > feel for what's been fixed/improved in the 1.0.X line since the 1.0
> > release, and a reminder to anyone who's interested in helping to fix
> > an issue in the 1.0.X codebase that time is running short leading up
> > to the 1.0.1 release :)
>
> do you have a list of fixes/changes available?
> or a URL to hit to get this? it will make people's lives a bit easier if
> they want to focus on testing.
--~--~---------~--~----~------------~-------~--~----~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to