[Distutils] AttributeError: 'NoneType' object has no attribute 'group' in get_svn_revision
Phillip J. Eby
pje at telecommunity.com
Mon Sep 18 16:48:54 CEST 2006
At 04:41 PM 9/18/2006 +0200, Markus Tacker wrote:
>Hoi, On 9/18/06, Phillip J. Eby <pje at telecommunity.com> wrote: > The
>version of setuptools you're using doesn't support Subversion 1.4; you >
>need to upgrade to the latest version using either: this gives me similar
>errors:
Hm. Okay, do this:
easy_install -eb. setuptools==dev06
This will create a setuptools subdirectory in the current directory. Then do:
cd setuptools
python2.4 setup.py install
The problem that you're having is that your current version of easy_install
is using the setuptools version that doesn't work right with Subversion
1.4. The above approach should work around the problem by only checking
out the code, not building it. The second step then builds it using the
*new* version of setuptools, which doesn't have the problem. Sorry about that.
More information about the Distutils-SIG
mailing list