← Back to team overview

bzr-windows team mailing list archive

Re: Update on Windows installers for 2.0

 

Ian Clatworthy пишет:
> Remaining issues I know about:
> 
> * QBzr now requires Pywin32 (imports win32event in commands.py)
>   but this isn't bundled!

bzr's setup.py requires this small change:

=== modified file 'setup.py'
--- setup.py    2009-09-03 12:10:38 +0000
+++ setup.py    2009-09-15 05:57:10 +0000
@@ -411,6 +411,7 @@
     includes.append('sip') # extension module required for Qt.
     packages.append('pygments') # colorizer for qbzr
     packages.append('docutils') # html formatting
+    includes.append('win32event')
     # but we can avoid many Qt4 Dlls.
     dll_excludes.extend(
         """QtAssistantClient4.dll QtCLucene4.dll QtDesigner4.dll




References