[Checkins] SVN: zc.objectlog/tags/0.1/setup.py corrected path of file used in long_description, so that it runs fine on platforms other than linux. thanks to Wichert Akkerman for pointing this out.

Brian Sutherland jinty at web.de
Thu Apr 3 12:12:07 EDT 2008


Please also try to not commit to tags. A tag is a "release" and should
always be the same.

If there is a tarball for release 1.0 and a tag for release 1.0, but
they are different, it's very confusing.

Rather, check your changes into the trunk and make a new tag.

I think the one exception to this is setting the date released, or the
version number.

On Wed, Apr 02, 2008 at 03:02:11PM -0400, Satchidanand Haridas wrote:
> Log message for revision 85072:
>   corrected path of file used in long_description, so that it runs fine on platforms other than linux. thanks to Wichert Akkerman for pointing this out.
>   
>   this again a tag commit as the package as already been released on pypi.
>   
>   
> 
> Changed:
>   U   zc.objectlog/tags/0.1/setup.py
> 
> -=-
> Modified: zc.objectlog/tags/0.1/setup.py
> ===================================================================
> --- zc.objectlog/tags/0.1/setup.py	2008-04-02 18:40:29 UTC (rev 85071)
> +++ zc.objectlog/tags/0.1/setup.py	2008-04-02 19:02:11 UTC (rev 85072)
> @@ -1,3 +1,4 @@
> +import os
>  from setuptools import setup, find_packages
>  
>  long_description = (open("README.txt").read() +
> @@ -2,3 +3,3 @@
>                      '\n\n' +
> -                    open("src/zc/objectlog/log.txt").read())
> +                    open(os.path.join("src", "zc", "objectlog", "log.txt")).read())
>  
> 
> _______________________________________________
> Checkins mailing list
> Checkins at zope.org
> http://mail.zope.org/mailman/listinfo/checkins

-- 
Brian Sutherland


More information about the Checkins mailing list